1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

ESPectro Core board support (#5419)

This commit is contained in:
Alwin Arrasyid
2018-12-03 21:27:06 +07:00
committed by david gauchard
parent 6280e98b03
commit ca3678f7c1
5 changed files with 259 additions and 0 deletions

View File

@ -820,6 +820,26 @@ boards = collections.OrderedDict([
'',
'Product page: https://www.seeedstudio.com/Wio-Link-p-2604.html'
],
}),
('espectro', {
'name': 'ESPectro Core',
'opts': {
'.build.board': 'ESP8266_ESPECTRO_CORE',
'.build.variant': 'espectro',
},
'macro': [
'resetmethod_nodemcu',
'flashmode_dio',
'flashfreq_40',
'4M',
],
'desc': [
'ESPectro Core is ESP8266 development board as the culmination of our 3+ year experience in exploring and developing products with ESP8266 MCU.',
'',
'Initially designed for kids in mind, everybody should be able to use it. Yet it\'s still hacker-friendly as we break out all ESP8266 ESP-12F pins.',
'',
'More details at https://shop.makestro.com/product/espectrocore/',
],
})
])