RazerConnectEffect only half of the ring is illuminated #45
-
Describe the issue Debug report
Current configuration {
"Profiles": [
{
"Name": "Default",
"Ports": [
[9802, 8101, 1],
[9802, 8101, 2],
[9802, 8101, 3],
[9802, 8101, 4],
[9802, 8102, 1],
[9802, 8102, 2],
[9802, 8102, 3]
],
"SpeedControllers": [
{
"Type": "PwmSpeedController",
"Config": {
"CurvePoints": [
[30, 30],
[45, 50],
[55, 60],
[65, 80],
[80, 100]
],
"Sensors": ["/intelcpu/0/temperature/13"],
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "RazerConnectEffect",
"Config": {
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
],
"ComputerStateProfiles": [
{
"StateType": "Shutdown",
"Ports": [
[9802, 8101, 1],
[9802, 8101, 2],
[9802, 8101, 3],
[9802, 8101, 4],
[9802, 8102, 1],
[9802, 8102, 2],
[9802, 8102, 3]
],
"Speed": 65,
"EffectType": "Full",
"EffectColors": [
[128, 0, 0]
]
}
],
"PortConfigs": [
{
"Ports": [[9802, 8101, 1],
[9802, 8101, 2],
[9802, 8101, 3],
[9802, 8101, 4]],
"Config": {
"Name": "Case Fan"
}
},
{
"Ports": [[9802, 8102, 1],
[9802, 8102, 2],
[9802, 8102, 3]],
"Config": {
"Name": "CPU Fan"
}
}
],
"SensorConfigs": [
{
"Sensors": ["/intelcpu/0/temperature/13"],
"Config": {
"CriticalValue": 90
}
}
]
}
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You need to use LedCountHandling to stretch the colors because razer effect only outputs 4/5. |
Beta Was this translation helpful? Give feedback.
-
Wow! Thank you for your quick answer. It worked like a charm! |
Beta Was this translation helpful? Give feedback.
You need to use LedCountHandling to stretch the colors because razer effect only outputs 4/5.
So for example add
"LedCountHandling": "Lerp",
to both of your port configs. You can also use"Nearest"
or"Copy"
.