From 3fd711f15cb752a9e18ab837c9b5773eb4d871e0 Mon Sep 17 00:00:00 2001 From: Matt Fryer Date: Wed, 12 Aug 2020 12:08:56 +0100 Subject: [PATCH] Added WeMos D1 mini lite --- src/Board_Identify.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Board_Identify.h b/src/Board_Identify.h index 7b9324b..86e7e0d 100644 --- a/src/Board_Identify.h +++ b/src/Board_Identify.h @@ -5,7 +5,7 @@ * Licensed under LGPL (free to modify and use as you wish) */ -// NEXT AVAILABLE TYPE: 119 +// NEXT AVAILABLE TYPE: 120 #pragma once @@ -625,6 +625,14 @@ namespace BoardIdentify { #if defined(BOARD_IDENTIFY_WARNING) #warning "Controller: WeMos D1 mini pro" #endif + #elif defined(ARDUINO_ESP8266_WEMOS_D1MINILITE) + const int type = 119; + const char* make = "WeMos"; + const char* model = "WeMos D1 mini lite"; + const char* mcu = "ESP8266"; + #if defined(BOARD_IDENTIFY_WARNING) + #warning "Controller: WeMos D1 mini lite" + #endif #elif defined(ARDUINO_WIFINFO) const int type = 66; const char* make = "WifInfo";