-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Add Adafruit HUZZAH ESP8266 (ESP-12 breakout) to Board Manager Package #351
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
i agree, |
Add Adafruit HUZZAH ESP8266 (ESP-12 breakout) to Board Manager Package
thanks for merging, @igrr! once it's deployed we will start updating tutorials to point to this package index |
I've also pushed some big changes (new bootloader), so probably need a few days to test if anything got broken :) |
Add Adafruit HUZZAH ESP8266 (ESP-12 breakout) to Board Manager Package
#define NUM_DIGITAL_PINS 17 | ||
#define NUM_ANALOG_INPUTS 1 | ||
|
||
#define analogInputToDigitalPin(p) ((p > 0)?NOT_A_PIN:0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd suggest to change this to p != 0 to also avoid negative input, if NOT_A_PIN was passed for some reason or so. Just a minor fix.
Is there also a reason why 160mhz was added as entry? I see no way how to use 160mhz, maybe I just dont find the correct place for the information?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure what you mean by "I see no way how to use 160mhz".
Select 160MHz, flash the image, and loop
will run at 160MHz.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had some problems with uploading speed 921600, so i switched back to 256000.
Seems to work now.
Removing double "are"
In an attempt to reduce confusion about how to install support for ESP8266 boards, I was hoping to add the Adafruit HUZZAH ESP-12 breakout to the official ESP8266 community package index. That way we can drop the ESP8266 board from the Adafruit package and point people to the official version.
Let me know if that sounds good, and we can change documentation to point to your package index and drop the ESP package from our package index once these changes are deployed.
Thanks!