MakePython ESP32
Contents
Introduction
Python is one of the most widely used, simple and easy-to-learn programming languages around. MicroPython is a lean implementation of the Python 3 programming language that has been pared down to run efficiently on microcontrollers.
MakePython ESP32 is preloaded with MicroPython, simple and suitable for beginners to learn the basic programming with MicroPython, Of course, users can free to change it to make it work with other platforms such as Arduino/GCC.
Model: MAKT32
Features
- Wi-Fi Protocols: 802.11b/g/n(802.11n up to 150Mbps),A-MPDU and A-MSDU aggregation and 0.4us guard interval support
- Wi-Fi Frequency range: 2.402GHz - 2.483Ghz
- Bluetooth Protocols: Bluetooth v4.2 BR/EDR and BLE specification
- Bluetooth Radio: NZIF receiver with-97 dBm sensitivity, Class-1/class-2 and class-3 transmitter, AFH
- Bluetooth Audio: CVSD and SBC
- CPU: Two low-power Xtensa® 32-bit LX6, ESP32-D0WDQ6
- CPU clock frequency: 80MHz to 240MHz
- Module interface: SD card,UART,SPI,SDIO,I2C,LED PWM,Motor PWM,I2S,IR,pulse,GPIO,capacitive touch sensor,ADC,DAC
- On-chip sensor: Hall sensor
- On-chip Internal RAM: 520KB
- Integrated crystal: 40MHz crystal
- Integrated SPI flash: 4MB
- ESP32 Module: ESP32 WROOM(NO PSRAM), ESP32 WROVER (8MB PSRAM)
- Power supply: 5V, integrate 5V-to-3.3V LDO
- Operating current: Average 80 mA
- Minimum current delivered by power supply: 500 mA
- OLED: 1.3inch SSD1306/SSD1315
- Recommended operation temperature range: --40℃ ~ +85℃
- Board size: 70*32.6mm
- Moisture sensitivity level(MSL): Level 3
Pin Definitions
Notice:
①IO34, IO35, IO36, IO39 input only.
②GPIO12 is internally pulled high in the module and is not recommended for use as a touch pin.
Usage
Development Tool
1.1Installing uPyCraft IDE
- Click this link to download uPyCraft IDE for Windows:
https://randomnerdtutorials.com/uPyCraftWindows
1.2Connection
Connect MakePython ESP32 to your computer through an USB cable, follow the steps:
- Tools > Board and select the esp32:
- Go to Tools > Serial and select the com port your ESP is connected to(download the USB driver at: CP210x USB)
- Press the Connect button to establish a serial communication with your board.
MakePython ESP32 Projects
Project_1: Ultrasonic Ranging
We use the HC-SR04 Module at:
https://www.makerfabs.com/hc-sr04-ultrasonic-range-measurement-module.html
- Sensor Connection
- Connect the simple sensor to ESP32 boards as following:
HC-SR04 Pins | MakePython ESP32 Pins |
VCC | 5V |
Trig | IO13 |
Echo | IO12 |
GND | GND |
Connect MakePython ESP32 to your computer through an USB cable.
- Download the ssd1306.py and hcsr04.py driver library from here:Code
- File > open and select the ssd1306.py and hcsr04.py
- Click on the right to DownloadAndRun
- Download the sample code: hc_sr04.py
- File > open and select the hc_sr04.py, then click DownloadAndRun
Project_2: Web Server Control LED
1.Connect LED
Connect the long LED pin to the end of the 330R resistor, the other end of the resistance is connected to 3.3v,the short pin of the LED lamp is connected to the IO5 of ESP32. As follows:
2.Connect WiFi
Click to download the Socket_LED.py file.
open the file and modify the 'SSID' and 'PASSWORD' to local WIF and password:
SSID = "Makerfabs" #Modify here with SSID PASSWORD = "20160704" #Modify here with PWD
After saving and clicking run, you can see network config, followed by the IP/netmask/gw/DNS address of the interface:
3.control LED
Enter the IP address printed from the serial port in any browser, with any computer in the same WIFI, to control the LED on/off:
When you click 'ON' with the mouse, the LED will turn on, and when you click off, the LED will turn off:
FAQ
You can list your questions here or contact with support@makerfabs.com for technology support.