DOOR_BOOLEAN, WINDOW_BOOLEAN instead of CLOSEABLE_BOOLEAN

This commit is contained in:
Patrick Haßel 2025-03-04 12:03:09 +01:00
parent e2c102b16a
commit a0ed699f4d

View File

@ -7,9 +7,9 @@
#define WINDOWS_GPIO D6 #define WINDOWS_GPIO D6
#define LIGHT_GPIO D7 #define LIGHT_GPIO D7
Input door("greenhouse/door", DOOR_GPIO, true, "CLOSEABLE_BOOLEAN"); Input door("greenhouse/door", DOOR_GPIO, true, "DOOR_BOOLEAN");
Input windows("greenhouse/windows", WINDOWS_GPIO, true, "CLOSEABLE_BOOLEAN"); Input windows("greenhouse/windows", WINDOWS_GPIO, true, "WINDOW_BOOLEAN");
Output light("greenhouse/light", LIGHT_GPIO, true, "LIGHT_BOOLEAN"); Output light("greenhouse/light", LIGHT_GPIO, true, "LIGHT_BOOLEAN");