mouse_m908/README.md

182 lines
7.8 KiB
Markdown
Raw Normal View History

2019-11-08 17:09:17 -07:00
# mouse_m908
2020-11-10 09:40:12 -07:00
Control Redragon gaming mice from Linux, BSD and Haiku
2019-11-08 17:17:19 -07:00
2020-03-20 16:47:17 -06:00
**Disclaimer: This software is not supported by the manufacturer of the hardware in any way, and relies completely on information from reverse-engineering. There is no warranty, especially in case of damage to the hardware.**
2020-07-25 14:33:28 -06:00
- [Status](#status)
- [Supported mice](#supported-mice)
2020-11-10 09:40:12 -07:00
- [Generic support](#generic-support)
2020-07-25 14:33:28 -06:00
- [Installing](#installing)
- [Linux](#linux)
- [OpenBSD and FreeBSD](#openbsd-and-freebsd)
- [Haiku](#haiku)
- [Other platforms](#other-platforms)
- [Usage](#usage)
- [Macros](#macros)
- [Macro file](#macro-file)
- [--bus and --device options](#--bus-and---device-options)
- [--kernel-driver option](#--kernel-driver-option)
- [License](#license)
## Status
2020-11-08 09:51:53 -07:00
All known settings from the official software are implemented for the M908. The other mice have varying levels of support.
2020-07-18 07:26:11 -06:00
### Supported mice
2020-11-10 09:44:36 -07:00
If you have a mouse with VID 0x04d9 that is not listed below, there is a good chance that it is easy to add support. Please open an issue for that.
2020-11-10 09:40:12 -07:00
2020-07-25 14:33:28 -06:00
Name | Support | VID:PID | Additional notes
---|---|---|---
2020-11-10 09:40:12 -07:00
Redragon M908 Impact | complete | 0x04d9:0xfc4d |
2020-11-10 09:44:36 -07:00
Redragon M709 Tiger | experimental | 0x04d9:0xfc2a | See [this issue](https://github.com/dokutan/mouse_m908/issues/1)<br>- Changing the profile works<br>- Changing the settings is untested<br>- Macros are untested<br>- Reading the settings is not properly implemented due to a lack of data
2020-11-10 09:40:12 -07:00
Redragon M711 Cobra (FPS) | experimental | 0x04d9:0xfc30 | See [this issue](https://github.com/dokutan/mouse_m908/issues/2)<br>- Nothing is tested<br>- Implemented: led color, mode, brightness and speed, changing profiles, macros, reading settings<br>- No usb capture available, therefore missing: button mapping, dpi, scrollspeed, usb poll rate
Redragon M715 Dagger | experimental | 0x04d9:0xfc39 | Nothing is tested<br>- The device specific code is copied from the M711 and mostly unmodified
2020-11-12 11:59:57 -07:00
Redragon M990 Legend | generic,<br>experimental support in the [m990 branch](https://github.com/dokutan/mouse_m908/tree/m990) | 0x04d9:0xfc0f | See [this issue](https://github.com/dokutan/mouse_m908/issues/5)<br>This mouse uses a different data format, keycodes, etc.
Redragon M990 Legend (RGB/Chroma) | generic | 0x04d9:0xfc41 | [please read this](#generic-support)
2020-11-10 09:40:12 -07:00
Redragon M719 Invader | generic | 0x04d9:0xfc4f | [please read this](#generic-support)
Redragon M802 Titanoboa 2 | generic | 0x04d9:0xfc42 | [please read this](#generic-support)
Redragon 2858 (?) | generic | 0x04d9:0xfc5e | [please read this](#generic-support)
Redragon 2805 (?) | generic | 0x04d9:0xfc58 | [please read this](#generic-support)
Redragon 2850 (?) | generic | 0x04d9:0xfc61 | [please read this](#generic-support)
Redragon M901 Perdition (3) | generic | 0x04d9:0xfc40 | [please read this](#generic-support)
Redragon M801 Mammoth | generic | 0x04d9:0xfc56 | [please read this](#generic-support)
Redragon M910 Ranger | generic | 0x04d9:0xfc49 | [please read this](#generic-support)
Redragon M998-RGB<br>Redragon M808-RGB | generic | 0x04d9:0xfc5f | [please read this](#generic-support)
2020-11-10 09:44:36 -07:00
Redragon M607 Griffin | generic | 0x04d9:0xfc38 | [please read this](#generic-support)
2020-11-10 09:40:12 -07:00
Redragon (?) | generic | 0x04d9:0xfc3f | [please read this](#generic-support)
If you have a mouse with experimental support, your help is needed to improve this software. Please report your results (working and non-working software).
2020-07-18 07:26:11 -06:00
2020-11-10 09:40:12 -07:00
### Generic support
If your mouse is listed as having generic support:
- Nothing is known about this mouse, no specific code has been written
- Please expect nothing beyond changing the active profile (other features might work if you are lucky)
2020-11-10 09:44:36 -07:00
- **Please open an issue to add complete support**
2020-04-03 09:57:53 -06:00
2019-11-08 17:21:11 -07:00
## Installing
2020-02-08 15:10:16 -07:00
### Linux
2019-11-08 17:17:19 -07:00
- Install the dependencies:
2020-05-14 13:46:58 -06:00
- libusb (On some distributions (e.g. Ubuntu) a dev package is required)
2020-02-07 21:00:14 -07:00
- Clone this repo or download a release and run
2020-03-17 14:15:07 -06:00
```
2020-03-17 14:07:19 -06:00
make
2019-11-08 17:17:19 -07:00
sudo make install
2020-03-17 14:15:07 -06:00
```
2019-11-08 17:17:19 -07:00
- Restart to get userspace access to the mouse via the installed udev rule
2019-11-30 16:09:48 -07:00
- Uninstall with
2020-03-17 14:15:07 -06:00
```
2019-11-30 16:09:48 -07:00
sudo make uninstall
2020-03-17 14:15:07 -06:00
```
2019-11-08 17:17:19 -07:00
2020-06-24 16:20:51 -06:00
### OpenBSD and FreeBSD
2020-02-08 15:10:16 -07:00
2020-06-24 16:20:51 -06:00
- Install dependencies:
- OpenBSD: libusb1
- FreeBSD: pkgconf
2020-02-08 15:10:16 -07:00
- Clone this repo and compile with
```
2020-04-19 07:41:45 -06:00
make CC=clang++
2020-02-08 15:10:16 -07:00
```
2020-06-13 08:26:01 -06:00
- Install with: (run as root)
```
make install-bsd
```
2020-06-24 16:20:51 -06:00
- OpenBSD: The --kernel-driver option is required
- FreeBSD: Running as root is required, however if you know how to fix this please let me know
2020-06-13 08:26:01 -06:00
- Uninstall with:
```
make uninstall
```
2020-04-19 08:21:04 -06:00
### Haiku
2020-05-27 08:55:04 -06:00
- Install dependencies: libusb and libusb_devel (from the HaikuPorts repo)
2020-04-19 08:21:04 -06:00
- Clone this repo and compile with
```
make
```
2020-05-27 08:55:04 -06:00
- Run with ``./mouse_m908`` or build a .hpkg package for installation with
```
make hpkg
```
- This should create a file named mouse_m908.hpkg in the Haiku directory. The .hpkg package can be installed with HaikuDepot.
2020-04-19 08:21:04 -06:00
- The --kernel-driver option is required
2020-02-08 15:10:16 -07:00
### Other platforms
2020-05-09 18:43:08 -06:00
Other platforms are not tested, however as long as the dependencies are available there is no special reason they should not be compatible. If you (tried) to compile on a platform that is not listed above, please report your results so this file can be updated (and potential bugs can be fixed).
2020-02-08 15:10:16 -07:00
2019-11-08 17:21:11 -07:00
## Usage
2020-07-20 13:22:21 -06:00
The settings are stored in a file and applied all at once (except macros, see below). See examples/example_m*.ini and keymap.md
2019-11-08 17:17:19 -07:00
2019-11-30 16:11:46 -07:00
- Apply the example configuration:
2019-11-08 17:17:19 -07:00
``
2020-07-20 13:22:21 -06:00
mouse_m908 -c examples/example_m908.ini
2019-11-08 17:17:19 -07:00
``
2020-08-14 11:33:57 -06:00
- To explicitly state which mouse to open, use the ``--model`` option, e.g. for the M709
2020-07-18 07:26:11 -06:00
``
2020-07-20 13:22:21 -06:00
mouse_m908 -c examples/example_m709.ini -M 709
2019-11-08 17:17:19 -07:00
``
2020-05-09 15:36:23 -06:00
- Read the configuration from the mouse and store it in config.ini:
``
2020-05-11 11:02:26 -06:00
mouse_m908 -R config.ini
2020-05-09 15:36:23 -06:00
``
2019-11-08 17:17:19 -07:00
- Set active profile to number 3:
``
mouse_m908 -p 3
``
- Get usage info:
``
mouse_m908 -h
``
2019-12-07 17:52:41 -07:00
- Send macro example.macro to slot 1:
``
2020-07-20 13:22:21 -06:00
mouse_m908 -m examples/example.macro -n 1
2019-12-07 17:52:41 -07:00
``
2020-07-20 13:22:21 -06:00
- Send all macros from example_m908.ini:
2020-05-13 11:28:09 -06:00
``
2020-07-20 13:22:21 -06:00
mouse_m908 -m examples/example_m908.ini
2020-05-13 11:28:09 -06:00
``
2019-12-07 17:52:41 -07:00
### Macros
2020-05-13 11:28:09 -06:00
There is space for 15 macros on the mouse, these are shared over all profiles. Each macro can hold up to 67 actions, any further actions get ignored.
There are two file formats in which macros can be specified, one macro per file (the older type) and multiple macros as comments in the config.ini file (as produced by ``mouse_m908 --read``).
To set a macro to a specific button:
2019-12-07 17:52:41 -07:00
1. Create a file containing the macro actions
2. Add macro⟨N⟩ to the button mapping configuration to set a button to the ⟨N⟩th macro
2020-05-13 11:28:09 -06:00
3. Apply the configuration: ``mouse_m908 -c ⟨config.ini⟩``
4. Depending on the file format:
- older type: Apply the specific macro: ``mouse_m908 -m ⟨macrofile⟩ -n ⟨N⟩``
2020-05-13 11:32:09 -06:00
- newer type: Apply all macros: ``mouse_m908 -m ⟨config.ini⟩``
2020-05-13 11:28:09 -06:00
2019-12-07 17:52:41 -07:00
#### Macro file
Each line contains an action and a parameter separated by a tab. Supported actions are:
- down ⟨key⟩
- up ⟨key⟩
2019-12-10 15:45:36 -07:00
- delay ⟨1-255⟩
2020-11-08 08:22:56 -07:00
- move_left ⟨1-120⟩
- move_right ⟨1-120⟩
- move_up ⟨1-120⟩
- move_down ⟨1-120⟩
2019-12-07 17:55:35 -07:00
2020-07-20 13:22:21 -06:00
examples/example.macro for an example of the older file format, examples/example_m*.ini for an example of the newer format, keymap.md section Keyboard keys/Keys for a list of recognized Keys. Supported mousebuttons (up and down):
2019-12-10 15:45:36 -07:00
- mouse_left
- mouse_right
- mouse_middle
- mouse_forward
- mouse_backward
2019-11-08 17:17:19 -07:00
2020-02-08 15:10:16 -07:00
### --bus and --device options
2020-02-07 20:34:17 -07:00
With these options the USB bus id and device number can be specified. This is useful if there are multiple devices with the same vendor and product id, or if the particular device has a different vendor or product id that is not expected by this software.
2020-02-08 15:10:16 -07:00
### --kernel-driver option
On some systems libusb might not be able to detect or detach kernel drivers, this results in a failure because the mouse can not be opened. This options skips this step.
2020-03-20 16:47:17 -06:00
2020-03-28 11:10:12 -06:00
## License
2020-03-20 16:47:17 -06:00
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.