Skip to content

Commit

Permalink
Added WeMos D1 mini lite
Browse files Browse the repository at this point in the history
  • Loading branch information
MattFryer authored Aug 12, 2020
1 parent b935793 commit 3fd711f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/Board_Identify.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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";
Expand Down

0 comments on commit 3fd711f

Please sign in to comment.