Micropython Pre-flight (Windows 10)
Downloads & Support If you have any technical support question, you can email us at: email protected An in depth detail MANUAL for both the Android app and USB Manager can be downloaded here from Maxconsole.com (or mirror 1 or mirror 2 ). To use the CP2102 on a computer running Mac OS X, you should download and install the CP210x USB to UART Bridge VCP Drivers from Silicon Labs for Mac OS X. Additionally, we have older drivers that other customers have used successfully on both PowerPC- and Intel-based Macs running OS X version 10.3.9 or later, but these probably will not work on version 10.7 or later.

by Casey Anderson Drivers security-center gmbh & co. kg sound cards & media devices.
Reference
Materials
- USB MicroB Cable
The procedure for installing the virtual COM port driver on a Windows® 7 (64 bit version) system is shown be- low. Start Windows® 7. Shut down all running applications. Download the latest drivers, firmware, and software for your HP ENVY 7640 e-All-in-One Printer.This is HP’s official website that will help automatically detect and download the correct drivers free of cost for your HP Computing and Printing products for Windows and Mac operating system. Download the latest drivers, software, firmware, and diagnostics for your HP products from the official HP Support website.
Via this port, connected devices can be supplied with power, while the host device can be charged with a power input of 100 Watts. Especially Developed for Tablets. The USB 3.0 Type C Multiport Adapter is so compact that it fits in any pocket. Downloads 7 Drivers and Manual for Sharkoon Drakonia Mouse & Keyboard & Other Input. Here's where you can downloads the newest software for your Drakonia. Downloads 6 Drivers and Manual for Sharkoon Skiller Mouse & Keyboard & Other Input. Here's where you can downloads the newest software for your Skiller. Sharkoon’s wide product range is designed for PC users and gamers looking for user-friendliness, value for money and the performance they expect. Sharkoon input devices driver download. Download input device drivers or install DriverPack Solution software for driver scan and update.
Install Anaconda
- Go to the downloads section of the Anaconda website here
- (On the same page) Scroll down until you see three buttons, one for each operating system supported by Anaconda. Click on Windows
- (On the same page) Find the header reading Python 3.7 version and click the Download button just below it
- Install Anaconda
- Click on the Start menu, you should be able to find an application called Anaconda Powershell Prompt. Launch that application
- Run the following in the Anaconda Powershell Prompt:
conda info
Create A Conda Environment
In the Anaconda Powershell Prompt:
conda create -n micropython python=3.7conda activate micropythonpip install esptoolpip install adafruit-ampyconda list(confirms thatesptoolandampyhave been installed)cd Documentsmkdir micropythoncd micropython
Micropython firmware
- Go to the Downloads section of the micropython site here and scroll down until you see a header reading Firmware for ESP32 boards
- Download the latest Standard Firmware (esp32-20190529-v1.11.bin as of this writing)
- (In the Anaconda Powershell Prompt):
conda activate micropython - Move the
.binfile you just downloaded to the micropython folder. For example, if you downloaded the file toDownloads, navigate to that folder in Anaconda Powershell Prompt and run the following:mv esp32-20190529-v1.11.bin .Documentsmicropython
Silabs Software Driver Download For Windows 10 Offline
Install SiLabs Driver for ESP32

This driver enables communication between a PC and the ESP32 via USB
- Go here and find the header reading Download for Windows 10 Universal (v10.1.7 as of this writing)
- Click on the link reading Download VCP for Windows 10 Universal to intiate the download
- Install the driver
Device Manager
- Connect your
ESP32to your PC - Open Device Manager
- Scroll to Ports and click to expand
- Find the line reading Silicon Labs CP210x USB to UART Bridge. At the end of that line you should see
COMfollowed by a number (example:COM3). This identifies where your ESP32 is on your PC so write it down somewhere for use later.
Configure ESP32
- (In Anaconda Powershell Prompt)
cd Documents(or wherever you put your micropython folder) cd micropythonpwdto confirm you are in the right folderlsto confirm that the.binfile is the micropython folder- Erase the software that is already on the
ESP32:esptool --port COM3 erase_flash - Drivers in windows are a little wonky (sorry), so one of the following steps should write the
.binfile to the ESP32. Start with the first one and, if you get errors, try the second one:
- v1:
esptool --port COM3 --baud 460800 write_flash --flash_size=detect 0 esp8266-20171101-v1.9.3.bin - v2:
esptool --port COM3 write_flash 0x1000 esp8266-20171101-v1.9.3.bin
- When
esptoolis done activate the defaultcondaenvironment to shut it down:conda activate - Quit the Anaconda Powershell Prompt
Install Putty
Putty is an ssh and serial connection client for Windows. We will use it to access the Micropython REPL
- Go to the Putty download site here
- Find the header MSI (‘Windows Installer’), underneath it you should see a link to download putty 64-bit (
putty-64bit-0.71-installer.msias of this writing). - Install Putty
- Go to the Start menu, locate and launch Putty
- Set Putty to a serial connection and then enter the following information:
- Serial Port:
COM3(note: see Device Manager to confirm the port number for your ESP32) - Baud Rate: 115200
Silabs Software Driver Download For Windows 10
- Click Open. You will probably see a bunch of startup text and then the micropython command prompt:
>>> - Print 'hello world!' with the micropython REPL:
print('hello world!') - Close Putty to shut down the connection
Silabs Software Driver Download For Windows 10 32-bit
File Management on the ESP32
Silabs Software Driver Download For Windows 10 Pro
- Save this Python file to your
Documents/micropythonfolder - (In Anaconda Powershell Prompt)
conda activate micropython cd Documents/micropython- Run
blink.pyon theESP32:ampy --port COM3 run blink.py. Stop running the script by typing Ctl-C and then power cycle the ESP32 - To store the file on the
ESP32:ampy --port COM3 put blink.py - To see a file stored on the
ESP32:ampy --port COM3 get blink.py - To remove a file from the
ESP32:ampy --port COM3 rm blink.py - Or to see all of the files currently on the ESP32:
ampy --port COM3 ls - To shutdown: first activate the default conda environment:
conda activate, close the Anaconda Powershell Prompt