add hardware abstraction layer for ESP32 DevKit V1

This commit is contained in:
lenvm 2024-12-29 22:08:50 +01:00
parent 4d68c653c7
commit 95ae99aeef
5 changed files with 101 additions and 1 deletions

View file

@ -563,7 +563,10 @@ String get_firmware_info_processor(const String& var) {
#endif // HW_STARK
#ifdef HW_3LB
doc["hardware"] = "3LB board";
#endif // HW_STARK
#endif // HW_3LB
#ifdef HW_DEVKIT
doc["hardware"] = "ESP32 DevKit V1";
#endif // HW_DEVKIT
doc["firmware"] = String(version_number);
serializeJson(doc, content);