Skip to content

Instantly share code, notes, and snippets.

@OdinsHat
Last active May 17, 2024 13:57
Show Gist options
  • Save OdinsHat/bd10f0b5dcd4733d745cb876822ead1e to your computer and use it in GitHub Desktop.
Save OdinsHat/bd10f0b5dcd4733d745cb876822ead1e to your computer and use it in GitHub Desktop.
Esptool being used to install ESPEasy in Linux
#!/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
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