| 164 | } |
| 165 | |
| 166 | void LEDOff() { |
| 167 | if (simulated_led_state) { |
| 168 | simulated_led_state = false; |
| 169 | led_state_changes++; |
| 170 | blink_test_output.push_back("LED_OFF"); |
| 171 | if (debug_output_enabled) { |
| 172 | std::cout << "LED OFF at " << millis() << "ms" << std::endl; |
| 173 | } |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | // Test callback functions (matching the example structure) |
| 178 |
no test coverage detected