| 59 | } |
| 60 | |
| 61 | void addFadeColor(CRGB cname) { |
| 62 | struct ledInstructionRGB* rgb = new struct ledInstructionRGB; |
| 63 | rgb->ledColor = cname; |
| 64 | rgb->fadeTime = 750; |
| 65 | rgb->length = 0; |
| 66 | addToRGBQueue(rgb, false); |
| 67 | } |
| 68 | |
| 69 | void shortBlink(CRGB cname) { |
| 70 | struct ledInstructionRGB* rgb = new struct ledInstructionRGB; |
no test coverage detected