Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

works for MSI B450M MORTAR MAX #92

Open
Ka-lua opened this issue Dec 12, 2019 · 5 comments
Open

works for MSI B450M MORTAR MAX #92

Ka-lua opened this issue Dec 12, 2019 · 5 comments

Comments

@Ka-lua
Copy link

Ka-lua commented Dec 12, 2019

All examples work for the board in the title. Finally I can disable the lights ;)

@sukerman
Copy link

It doesn't really, it only reacts if you invert the colours, and It pulses if you invert all 3, so here's a fudge :

msi-rgb 0 0 0 -ig -ib # gives red
msi-rgb 0 0 0 -ir -ig # gives blue
msi-rgb 0 0 0 -ir -ig # gives green

Just inverting two values causes it to set max for the other and doesn't then pulse.

@sukerman
Copy link

sukerman commented Dec 18, 2019

Here's a script to call every minute via cron to change the colours red/green/blue. Make sure you move the msi-rgb binary to /usr/local/bin so cron can find it

#!/usr/bin/php
<?php
$m = date("i") % 3;
if ($m == 0) {
system('/usr/local/bin/msi-rgb 0 0 0 -ig -ib # gives red');
}
if ($m == 1) {
system('/usr/local/bin/msi-rgb 0 0 0 -ir -ig # gives green');
}
if ($m == 2) {
system('/usr/local/bin/msi-rgb 0 0 0 -ir -ib # gives blue');
}

@sukerman
Copy link

Even better change the 0 to 11111111 to get it cycling between colours

msi-rgb 0 0 11111111 -ig -ib

@macgherl57
Copy link

macgherl57 commented Jan 8, 2020

Is there a way to reduce light intensity? Or to cicle between other colours as well, like cyan, magenta etc.?
Also, what is the logic behind putting 0 0 0 for r,g,b values when using -i switch (meaning, what could I achieve by changing those values to some different than 0?)?
My mainbord is tomahawk B450, but all that has been said in here applies to it as well.
That's why I'd like, if possible, to get answers to my previous questions.
Thanks!

@bpiero
Copy link

bpiero commented Mar 6, 2020

#102

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants