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 6/7
After that, you need install esptool.py and a software called "picocom" in your Linux system( debain, ubuntu, or raspbian):
There are a lot of terminal softwares such as "minicom" or "screen". You can select one of them by yourself.
sudo pip install esptool.py
sudo apt-get -y install picocom
sudo picocom -b 115200 /dev/ttyUSB1
You will enter an IDE environment so you can coding by python language.
eg. you can import machine module as:
import machine
Or just test range function it in your IDE:
Control LED Pin
from machine import Pin
p0 = Pin(0, Pin.OUT) # Setting GPIO0's direction to output mode
p0.value(1) # Setting values to 1 means "HIGH" level
p0.value(0) # Setting values to 0 means "LOW" level
Machine module