We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Didn't think you'd mind me making notes here??
Download arduino https://www.arduino.cc/en/Main/Software
Need to configure link(s) for additional boards
Preferences Additional Board Manager URLs: http://arduino.esp8266.com/stable/package_esp8266com_index.json, https://dl.espressif.com/dl/package_esp32_index.json
Tools | Board: "Arduino Uno" | Boards Manager...
Search for esp8266 Install esp8266 - 2.7.1
Search for esp32 Install esp32 - 1.0.4
Tools Port: /dev/cu.SLAB_USBtoUART
Need to install the driver for this to show,
cp2102 driver https://www.silabs.com/interface/usb-bridges/classic/device.cp2102 https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers https://www.silabs.com/documents/public/software/Mac_OSX_VCP_Driver.zip https://www.silabs.com/Support%20Documents/Software/Mac_OSX_VCP_Driver.zip
nodemcu/nodemcu-devkit-v1.0#2 https://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx
The text was updated successfully, but these errors were encountered:
I got a fun error due to where Python was installed:
Arduino: 1.8.12 (Mac OS X), Board: "NodeMCU 1.0 (ESP-12E Module), 80 MHz, Flash, Legacy (new can return nullptr), All SSL ciphers (most compatible), 4MB (FS:2MB OTA:~1019KB), 2, v2 Lower Memory, Disabled, None, Only Sketch, 115200" env: python3: No such file or directory exit status 127 Error compiling for board NodeMCU 1.0 (ESP-12E Module). This report would have more information with "Show verbose output during compilation" option enabled in File -> Preferences.
Arduino: 1.8.12 (Mac OS X), Board: "NodeMCU 1.0 (ESP-12E Module), 80 MHz, Flash, Legacy (new can return nullptr), All SSL ciphers (most compatible), 4MB (FS:2MB OTA:~1019KB), 2, v2 Lower Memory, Disabled, None, Only Sketch, 115200"
env: python3: No such file or directory exit status 127 Error compiling for board NodeMCU 1.0 (ESP-12E Module).
This report would have more information with "Show verbose output during compilation" option enabled in File -> Preferences.
Went searching and found:
esp8266/Arduino#6931
My workaround that seems to work: cd ~/Library/Arduino15/packages/esp8266/tools/python3/3.7.2-post1 sudo unlink python3 sudo ln -s /usr/bin/python3 /usr/local/bin/python3 sudo ln -s /usr/local/bin/python3 python3
cd ~/Library/Arduino15/packages/esp8266/tools/python3/3.7.2-post1
sudo unlink python3
sudo ln -s /usr/bin/python3 /usr/local/bin/python3
sudo ln -s /usr/local/bin/python3 python3
Sorry, something went wrong.
No branches or pull requests
Didn't think you'd mind me making notes here??
Download arduino
https://www.arduino.cc/en/Main/Software
Need to configure link(s) for additional boards
Preferences
Additional Board Manager URLs: http://arduino.esp8266.com/stable/package_esp8266com_index.json, https://dl.espressif.com/dl/package_esp32_index.json
Tools | Board: "Arduino Uno" | Boards Manager...
Search for esp8266
Install esp8266 - 2.7.1
Search for esp32
Install esp32 - 1.0.4
Tools
Port: /dev/cu.SLAB_USBtoUART
Need to install the driver for this to show,
cp2102 driver
https://www.silabs.com/interface/usb-bridges/classic/device.cp2102
https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers
https://www.silabs.com/documents/public/software/Mac_OSX_VCP_Driver.zip
https://www.silabs.com/Support%20Documents/Software/Mac_OSX_VCP_Driver.zip
nodemcu/nodemcu-devkit-v1.0#2
https://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx
The text was updated successfully, but these errors were encountered: