Get your own customer support community
 

MaxM Fade Speed Behaves Differently Than BlinkM

I finally got my hands on a MaxM (Christmas present). I sure like the light output and the external power connector. One thing I'm noticing is that the fade speed seems to work differently than on the BlinkM. I put the following script on both the MaxM and the BlinkM:

int script_ticks = 240; // 8 seconds
byte fade_speed = 1;

blinkm_script_line script_lines[] = {
{ 1, {'f', fade_speed}},
{ script_ticks, {'c', 0xff, 0x00, 0x00}},
{ script_ticks, {'c', 0x00, 0xff, 0x00}},
{ script_ticks, {'c', 0x00, 0x00, 0xff}},
};

On the BlinkM, it slowly fades from one color to the next, over 8 seconds (which I want). On the MaxM, it stays on one color for 7 seconds and then fades to the next color in 1 second (which I don't want). I've tried the time adjust feature, and that doesn't seem to chage the behavior. Is there any way to make the MaxM fade over the entire script tick value rather than remaining static on the current color and then doing a 1-second fade to the next?

Thanks,
zombieCat
Inappropriate?
1 person has this question

User_default_medium