Product Specifications

11/7/2017 GeeekNET ESP32 Development Board SKU: EZ-0062 - 52Pi Wiki
http://wiki.52pi.com/index.php/GeeekNET_ESP32_Development_Board_SKU:_EZ-0062 5/7
Working on Arduino IDE
Installation instructions for Windows
[Installation Guide (https://github.com/geeekpi/arduino-esp32/blob/master/docs/arduino-ide/windows.md)]
Installation instructions for Debian / Ubuntu OS
1. Install latest Arduino IDE from [arduino.cc (https://www.arduino.cc/en/Main/Software)]
Open Terminal and execute the following command (copy->paste and hit enter):
sudo usermod -a -G dialout $USER && \
sudo apt-get install git && \
wget https://bootstrap.pypa.io/get-pip.py && \
sudo python get-pip.py && \
sudo pip install pyserial && \
mkdir -p ~/Arduino/hardware/espressif && \
cd ~/Arduino/hardware/espressif && \
git clone https://github.com/espressif/arduino-esp32.git esp32 && \
cd esp32/tools/ && \
python get.py
2. Restart Arduino IDE
Installation instructions for Mac OS
1. Install latest Arduino IDE from [arduino.cc (https://www.arduino.cc/en/Main/Software)]
Open Terminal and execute the following command (copy->paste and hit enter):
mkdir -p ~/Documents/Arduino/hardware/espressif && \
cd ~/Documents/Arduino/hardware/espressif && \
git clone https://github.com/espressif/arduino-esp32.git esp32 && \
cd esp32/tools/ && \
python get.py
Restart Arduino IDE
Working on MicroPython
You can download the latest firmware for ESP32 boards:
Download Firmware for ESP32 boards (https://micropython.org/download#esp32)
The following files are daily firmware for ESP32-based boards. (Unzip it before using it)
File:Esp32-20170822-v1.9.1-438-g392aaffc.bin.zip
Program your board using the esptool.py program, and put the firmware starting at address 0x1000
If you are putting MicroPython on for the first time then you should first erase the entire flash.
PS: /dev/ttyUSB1 may different on your PC, please make sure it correctly.
sudo esptool.py --chip esp32 --port /dev/ttyUSB1 erase_flash
sudo esptool.py --chip esp32 --port /dev/ttyUSB1 write_flash -z 0x1000 firmware.bin)