-
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: Added documentation for the Prime Mini device
- Loading branch information
Showing
3 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
SteelSeries Prime Mini | ||
====================== | ||
|
||
|
||
.. NOTE:: | ||
|
||
* For Prime Mini Wireless, see :doc:`./prime_wireless`. | ||
|
||
|
||
Supported Models | ||
---------------- | ||
|
||
.. rivalcfg_device_family:: prime_mini | ||
|
||
|
||
Command-Line Usage | ||
------------------ | ||
|
||
.. rivalcfg_device_cli:: prime_mini | ||
|
||
|
||
Sensitivity (DPI) | ||
----------------- | ||
|
||
This mouse supports up to 5 sensitivity presets. You can define them like this: | ||
|
||
:: | ||
|
||
rivalcfg --sensitivity 800 # one preset | ||
rivalcfg --sensitivity 800,1600 # two presets | ||
|
||
You can switch preset using the button under the mouse wheel. | ||
|
||
.. NOTE:: | ||
|
||
When you set the sensitivity through the CLI, the selected preset always | ||
back to the first one. | ||
|
||
|
||
.. NOTE:: From Python API, you can pass an ``int``, a ``tuple`` or a ``list`` | ||
as parameter. You are also able to change the currently selected preset:: | ||
|
||
mouse.sensitivity(800) | ||
mouse.sensitivity("800, 1600") | ||
mouse.sensitivity([800, 1600]) | ||
# select the second preset (1600 dpi) | ||
mouse.sensitivity([800, 1600, 2000, 4000], selected_preset=2) | ||
|
||
|
||
Colors | ||
------ | ||
|
||
This mouse supports colors. Various formats are supported. | ||
|
||
.. include:: ./_colors.rst | ||
|
||
.. IMPORTANT:: | ||
|
||
On newer SteelSeries mice, the color settings are not saved in the onboard | ||
memory anymore (see Default Lighting bellow). | ||
|
||
|
||
Default Lighting | ||
---------------- | ||
|
||
.. include:: ./_default_lighting.rst | ||
|
||
|
||
Buttons | ||
------- | ||
|
||
.. figure:: ./images/prime_buttons.svg | ||
:alt: Prime buttons schema | ||
|
||
.. include:: ./_buttons.rst | ||
|
||
|
||
Python API | ||
---------- | ||
|
||
TODO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters