filmov
tv
Installing the MicroPython Firmware for ESP8266 | ESP8266 with MicroPython #MicroPython #ESP8266
Показать описание
For Contact Send an Email at:
Installing the MicroPython Firmware for ESP8266 | ESP8266 with MicroPython #MicroPython #ESP8266
First of all you must have Python software and proper internet connection in your PC if not then install it
After installing Python Software follow these steps
STEP NO: 01
Before we connect the NodeMCU (ESP8266) board to our PC, we need to download the latest version of MicroPython
after that we can install the firmware on the NodeMCU, you can download it from the
STEP NO: 02
Use the pip3 install esptool command to install the esptool
STEP NO: 03
STEP NO: 04
STEP NO: 05
Now run the following command, it will install the MicroPython binary onto the NodeMCU board
STEP NO: 06
Install ampy tool run the command
pip3 install adafruit-ampy
STEP NO: 07
Now we will upload LED Blinking MicroPython program into ESP8266
First we keep this program in a python file
from machine import Pin
from time import sleep
LED = Pin(2, Pin.OUT)
while True:
LED.value(not LED.value())
sleep(0.5)
STEP NO: 08
Thank You
Installing the MicroPython Firmware for ESP8266 | ESP8266 with MicroPython #MicroPython #ESP8266
First of all you must have Python software and proper internet connection in your PC if not then install it
After installing Python Software follow these steps
STEP NO: 01
Before we connect the NodeMCU (ESP8266) board to our PC, we need to download the latest version of MicroPython
after that we can install the firmware on the NodeMCU, you can download it from the
STEP NO: 02
Use the pip3 install esptool command to install the esptool
STEP NO: 03
STEP NO: 04
STEP NO: 05
Now run the following command, it will install the MicroPython binary onto the NodeMCU board
STEP NO: 06
Install ampy tool run the command
pip3 install adafruit-ampy
STEP NO: 07
Now we will upload LED Blinking MicroPython program into ESP8266
First we keep this program in a python file
from machine import Pin
from time import sleep
LED = Pin(2, Pin.OUT)
while True:
LED.value(not LED.value())
sleep(0.5)
STEP NO: 08
Thank You