mirror of
https://github.com/MatMoul/g810-led.git
synced 2025-04-04 15:21:45 +00:00
Improve samples
This commit is contained in:
parent
845e4c02e3
commit
e79c4e3241
2
TODO.md
2
TODO.md
@ -5,7 +5,7 @@
|
||||
* (0%) Improve INSTALL.md to support more distributions (And CentOS with hidapi)
|
||||
* (80%) Send specialized help based on executable name
|
||||
* (0%) Improve --help-effects
|
||||
* (0%) Improve --help-samples
|
||||
* (80%) Improve --help-samples
|
||||
* (0%) [Edit arch logitech gaming keyboard wiki](https://wiki.archlinux.org/index.php/Logitech_Gaming_Keyboards)
|
||||
* (0%) Add support of multiple keyboards
|
||||
* (0%) Add a python sample effects that use stdin
|
||||
|
@ -205,15 +205,41 @@ namespace help {
|
||||
cout<<endl;
|
||||
}
|
||||
|
||||
// Need more samples
|
||||
void samples(char *arg0) {
|
||||
string cmdName = utils::getCmdName(arg0);
|
||||
cout<<cmdName<<" Samples"<<endl;
|
||||
cout<<"----------------"<<endl;
|
||||
cout<<endl;
|
||||
cout<<cmdName<<" -k logo ff0000"<<endl;
|
||||
cout<<cmdName<<" -a 00ff00"<<endl;
|
||||
cout<<cmdName<<" -g fkeys ff00ff"<<endl;
|
||||
cout<<"Samples :"<<endl;
|
||||
cout<<"g810-led -p /etc/g810/profile # Load a profile"<<endl;
|
||||
cout<<"g810-led -k logo ff0000 # Set color of a key"<<endl;
|
||||
cout<<"g810-led -a 00ff00 # Set color of all keys"<<endl;
|
||||
cout<<"g810-led -g fkeys ff00ff # Set color of a group of keys"<<endl;
|
||||
cout<<"g810-led -s color # Set keyboard power on effect"<<endl;
|
||||
cout<<"g810-led -fx color keys 00ff00 # Set fixed color effect"<<endl;
|
||||
cout<<"g810-led -fx breathing logo 00ff00 0a # Set breathing effect"<<endl;
|
||||
cout<<"g810-led -fx cycle all 0a # Set color cycle effect"<<endl;
|
||||
cout<<"g810-led -fx hwave keys 0a # Set horizontal wave effect"<<endl;
|
||||
cout<<"g810-led -fx vwave keys 0a # Set vertical wave effect"<<endl;
|
||||
cout<<"g810-led -fx cwave keys 0a # Set center wave effect"<<endl;
|
||||
cout<<endl;
|
||||
cout<<"Samples with no commit :"<<endl;
|
||||
cout<<"g810-led -an 000000 # Set color of all key with no action"<<endl;
|
||||
cout<<"g810-led -gn modifiers ff0000 # Set color of a group with no action"<<endl;
|
||||
cout<<"g810-led -kn w ff0000 # Set color of a key with no action"<<endl;
|
||||
cout<<"g810-led -kn a ff0000 # Set color of a key with no action"<<endl;
|
||||
cout<<"g810-led -kn s ff0000 # Set color of a key with no action"<<endl;
|
||||
cout<<"g810-led -kn d ff0000 # Set color of a key with no action"<<endl;
|
||||
cout<<"g810-led -c # Commit all changes"<<endl;
|
||||
cout<<endl;
|
||||
cout<<"Samples for g610 :"<<endl;
|
||||
cout<<"g610-led -a 60 # Set intensity of all keys"<<endl;
|
||||
cout<<"g610-led -k logo ff # Set intensity of a key"<<endl;
|
||||
cout<<"g610-led -g fkeys aa # Set intensity of a group of keys"<<endl;
|
||||
cout<<endl;
|
||||
cout<<"Samples with pipe (for effects) :"<<endl;
|
||||
cout<<"g810-led -pp < profilefile # Load a profile"<<endl;
|
||||
cout<<"echo -e \"k w ff0000\\nk a ff0000\\nk s ff0000\\nk d ff0000\\nc\" | g810-led -pp # Set multiple keys"<<endl;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user