Move definition to config

This commit is contained in:
2025-12-10 23:08:03 +01:00
parent 0d0750b746
commit f961cc62a0
2 changed files with 10 additions and 9 deletions
+8 -2
View File
@@ -1,8 +1,6 @@
#ifndef CONFIG_H
#define CONFIG_H
// TODO: make this a config.h
// WI-FI
#define SSID "your_wifi_ssid"
#define PASSWORD "your_wifi_password"
@@ -14,4 +12,12 @@
#define MQTT_USER "your_username"
#define MQTT_PASS "your_password"
// Hardware
// Change based on how many vases max to manage [1 to ~100]
// larger numberss will require larger arrays stored in memory
// see AVR limitation on TWI addresses
#define SLAVES_NUMBER 8
#endif