• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » ESP32 MicroPython Setup with Adafruit Ampy

By Abhishek Ghosh March 30, 2019 9:11 am Updated on March 30, 2019

ESP32 MicroPython Setup with Adafruit Ampy

Advertisement

Previously we discussed basics around MicroPython and also configured to run MicroPython via IDE. Here is ESP32 MicroPython Setup with Adafruit Ampy for Windows, MacOS X and Linux. You need Python needs to be running and install few tools. An important note for this guide is to use the default command line tool for installation of Python packages such as Command Prompt for Microsoft Windows (do not use Ubuntu Bash on Windows 10 for this guide). Command Prompt will accept almost same format commands like that of *nix system. On Windows system, it is not easy to access the COM ports via Ubuntu Bash as /dev/ttyS. Command Prompt supports many *nix tools such as GNU Nano, grep etc. Essentially you’ll not feel huge problem with Windows Command Prompt. Use the default Terminal app for MacOS X. Mac may need to append sudo before pip commands. GNU Linux are most flexible and no special instruction required.

Attach your ESP32 with the computer. Open device manager or Arduino IDE to note the port. As for Windows, it will be some COM, like COM6. In *nix convention, serial devices will be at /dev/ttyS like /dev/ttyS6.

COM6 of Windows is same as /dev/ttyS6. But trying *nix way via Windows 10 Ubuntu Bash may invite “Input Output error”. Basically many packages, configurations for Windows 10 Ubuntu Bash not tweaked and it is worthless to invest time to get *nix style /dev/ttyS6 on Windows 10 when COM6 like style works fine. However, here is documentation for Windows Serial from Ubuntu Bash in case you want to try :

Advertisement

---

Vim
1
https://blogs.msdn.microsoft.com/wsl/2017/04/14/serial-support-on-the-windows-subsystem-for-linux/

 

Required Steps to Setup ESP32 MicroPython with Adafruit Ampy

 

First ensure that Python 3 and pip installed and updated. Go to this webpage and download the firmware :

Vim
1
micropython.org/download/#esp32

Do not read guides of that webpage. First install the ESPTool :

Vim
1
2
3
pip3 install esptool
# on older windows
# python3 -m pip install esptool

Next install Adafruit Ampy :

Vim
1
2
3
pip3 install adafruit-ampy
# on older windows
# python3 -m pip install adafruit-ampy

Now find your /dev/tty location in Linux, MacOS X where ESP32 is attached and on Windows find the COM port number where the ESP32 is attached. Edit the below command and run :

Vim
1
2
3
4
# for Windows
python -m esptool --port COM6 --baud 460800 write_flash --flash_mode dio --flash_size=detect 0x1000 <firmware_name>.bin
# for MacOS X, Linux
python -m esptool --port /dev/ttyUSB0 --baud 460800 write_flash --flash_mode dio --flash_size=detect 0x1000 <firmware_name>.bin

Example screen shot from Windows Command Prompt :

ESP32 MicroPython Setup with Adafruit Ampy

It is a Python script to blink the on-board LED of ESP32 :

Vim
1
2
3
4
5
6
7
8
from machine import Pin
from time import sleep
 
led = Pin(2, Pin.OUT)
 
while True:
  led.value(not led.value())
  sleep(0.5)

You can upload code in this way :

Vim
1
2
3
4
5
# *nix
ampy --port /serial/port put test.py /main.py
 
# windows
ampy --port COM6 put test.py /main.py

Adafruit has useful guide :

Vim
1
https://learn.adafruit.com/micropython-basics-load-files-and-run-code/boot-scripts

I guess this guide ended here !

Tagged With micropython esp32 wireless setup , adafruit-ampy , ampy esp32 , esp32 ampy serial port , esp32 adafruit hazzah32 , ampy stuck esp 32 , ampy on windows , ampy micropython esp32 , ampy for windows , windows10 install adafruit-ampy
Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to ESP32 MicroPython Setup with Adafruit Ampy

  • Introduction to MicroPython for ESP32

    Here is Introduction to MicroPython for ESP32. The Language Features of Python are Also Available in MicroPython Making ESP32 Super Powerful.

  • Command Prompt Commands : Alphabetical list of all commands in Windows 7

    Command Prompt Commands in Windows 7 provides the user access to 180+ command line commands. Here is a list of 200 Command Prompt Commands in Windows 7.

  • How to Setup Node.js (low.js) on Windows for ESP32

    Low.js is a port of Node.js and Has Certain Requirements to Run. Here is How to Setup Node.js (low.js) on Windows for ESP32.

  • Detect Smartwatch With ESP32 on IBM Watson IoT Widget

    In our previous guide, we have shown that we can trigger ESP32 (with Arduino IDE) to send message to IBM Watson IoT in Presence of a Particular Samsung Galaxy Smartwatch. That process involves BLE and WiFi. In our one series of articles on Samsung Smartwatch as Proximity Switch, we triggered a local event, such as […]

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Hybrid Multi-Cloud Environments Are Becoming UbiquitousJuly 12, 2023
  • Data Protection on the InternetJuly 12, 2023
  • Basics of BJT TransistorJuly 11, 2023
  • What is Confidential Computing?July 11, 2023
  • How a MOSFET WorksJuly 10, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy