Simulated LED control functions
| 153 | |
| 154 | // Simulated LED control functions |
| 155 | void LEDOn() { |
| 156 | if (!simulated_led_state) { |
| 157 | simulated_led_state = true; |
| 158 | led_state_changes++; |
| 159 | blink_test_output.push_back("LED_ON"); |
| 160 | if (debug_output_enabled) { |
| 161 | std::cout << "LED ON at " << millis() << "ms" << std::endl; |
| 162 | } |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | void LEDOff() { |
| 167 | if (simulated_led_state) { |