Files
SpotMicroESP32-Leika/esp32/lib/ESP32-sveltekit/state_result.h
T
2024-09-03 20:57:24 +02:00

7 lines
315 B
C

#pragma once
enum class StateUpdateResult {
CHANGED = 0, // The update changed the state and propagation should take place if required
UNCHANGED, // The state was unchanged, propagation should not take place
ERROR // There was a problem updating the state, propagation should not take place
};