Last active
May 17, 2024 13:57
-
-
Save OdinsHat/bd10f0b5dcd4733d745cb876822ead1e to your computer and use it in GitHub Desktop.
Esptool being used to install ESPEasy in Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#this is the command to type when installing ESP Easy to your ESP8266 device. | |
sudo python esptool.py --port /dev/ttyUSB0 write_flash 0x00000 ESP_Easy_mega-20200426_dev_ESP8266_4M1M.bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from math import * | |
name = input("What's your name?") | |
print("Hello %s!" % name) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment