• 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 » Steps of ESP32 MicroPython Setup with uPyCraft IDE

By Abhishek Ghosh March 3, 2019 10:13 pm Updated on March 3, 2019

Steps of ESP32 MicroPython Setup with uPyCraft IDE

Advertisement

In the previous article, we introduced to MicroPython. Here are the Steps of ESP32 MicroPython Setup with uPyCraft IDE. It is very easy to setup from GUI and blink the onboard LED of ESP32. We will guess that the reader already configured Arduino IDE with ESP32 (thereby the USB Serial drivers are already installed).

Setup are near same for Windows 10, MacOS and Linux. Essentially you need to download the following things. First is Python for GUI, which is this link :

https://www.python.org/downloads/

Download and start installing the software. Enable the option at the bottom “Add Python 3.7 to PATH” at the installation wizard and press the “Install Now” button and complete installation.

Advertisement

---

Second software is uPyCraft IDE for Windows 10, follow this link to get the latest EXE file :

https://github.com/DFRobot/uPyCraft

It will not require installation of the software. The IDE will run upon double clicking the EXE file (for Windows 10). It will require the firmware which is the third and final thing to download :

http://micropython.org/download

Scroll down to “Firmware for ESP8266 boards”, download the `.bin` file which looks like this :

esp8266-20190125-v1.10.bin (elf, map) (latest) 

Open uPyCraft IDE. It will want to install SourceCode font. Accept that prompt. Go to Tools > Serial and select ESP32 COM port. Go to Tools > Board and make sure you selected the “esp32” option. Go to Tools > BurnFirmware menu. Select board: esp32, burn_addr: 0x1000, erase_flash: yes, com: COMX (your COM port), Firmware: Select “Users” and choose the `esp8266-20190125-v1.10.bin` file downloaded earlier. Hold down the “BOOT” button on ESP32 board and click the “ok” button in the burn firmware window.

You are done!

Steps of ESP32 MicroPython Setup with uPyCraft IDE

You will find a paper clip icon on uPyCraft IDE, it is for connecting the IDE to board. Click it once. Again clicking it will disconnect. Copy-paste this code to test blink :

from machine import Pin
from time import sleep

led = Pin(2, Pin.OUT)

while True:
  led.value(not led.value())
  sleep(0.5)

Open new file, paste it, save the file with some name like `blink.py`. Then, find play icon on uPyCraft IDE and click it to run the Python script to blink. Sooner, you’ll see the on-board LED of ESP32 is blinking.

This ends this guide. Probably you will like to write the Python file on ESP32 to run it standalone. That is tricky and we will use command line tools to do it. Actually you need to run server like :

https://github.com/robert-hh/FTP-Server-for-ESP8266-and-ESP32

Thereafter use FileZilla like FTP client, connect to `192.168.1.131` at port 21 as anonymous user in plain FTP (insecure) mode. Instead of that way we will follow command line way in another guide.

Tagged With upycraft esp32 download , burn esp32 sim800 on upycraft , tuto esp32 sim800 upycraft , upycraft ide , esp upycraft , VYHV , configure esp32 for micropython , com comx , burn_addr upyCraft , add new py to upycraft

This Article Has Been Shared 504 Times!

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 Steps of ESP32 MicroPython Setup with uPyCraft IDE

  • Arduino LDR/Photoresistor and LED Based Light Meter

    Exactly Like Basic Sound Meter With Microphone, We Can Build Arduino LDR/Photoresistor and LED Based Light Meter. Here is circuit & code.

  • Arduino 8×8 LED Dot Matrix Display With MAX7219 : Code

    Guide on Arduino 8×8 LED Dot Matrix Display With MAX7219 Code For Testing For the Beginners With One 8×8 LED Dot Matrix Board to Get Started.

  • What is Micro USB OTG (On-The-Go)? Build DIY OTG Cable

    What is Micro USB OTG (On-The-Go)? USB OTG is a specification which allows smartphones to act as a host and allow other USB devices such as USB flash drives, digital cameras, keyboards, to attach and use them.

  • China Android Endoscope : What Features to Look To Buy The DIY Tool !

    Android Endoscope aka Broscope or whatever the names are, the function and cost is obvious from the name – cheap China stuff which looks like medical grade endoscopes, can be put inside holes or corners difficult to look with normal eyes, risky to use costly DSLR, mobile camera etc. What Features to Look to Buy […]

  • Automatic LED Control Using LDR and Arduino

    Here is Circuit Diagram and Schematic To Build Automatic LED Control Using LDR and Arduino Project. It is Very Easy, Cheap and You Need Only One LDR, Resistor and LED.

Additionally, 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

  • Exploring the Benefits and Advantages of Microsoft’s Operating System March 22, 2023
  • Web Design Cookbook: Accessibility March 21, 2023
  • Online Dating: How to Find Your Match March 20, 2023
  • Web Design Cookbook: Logo March 19, 2023
  • How Starlink Internet Works March 17, 2023

About This Article

Cite this article as: Abhishek Ghosh, "Steps of ESP32 MicroPython Setup with uPyCraft IDE," in The Customize Windows, March 3, 2019, March 22, 2023, https://thecustomizewindows.com/2019/03/steps-of-esp32-micropython-setup-with-upycraft-ide/.

Source:The Customize Windows, JiMA.in

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

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT