| 34 | } |
| 35 | |
| 36 | static void reset_to_default() { |
| 37 | // Reset power model to WS2812 @ 5V default (80, 55, 75, 5) with linear |
| 38 | // response; set_power_model rebuilds the scaling LUTs from the model's |
| 39 | // exponent field so this is sufficient to restore linear behavior. |
| 40 | set_power_model(PowerModelRGB()); |
| 41 | } |
| 42 | }; |
| 43 | |
| 44 | // Simple test to verify the function exists and returns a reasonable value |
nothing calls this directly
no test coverage detected