This commit is contained in:
ChKendel
2026-01-04 12:47:43 +01:00
5 changed files with 7 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
# appUpload
Here the Uploader for the installation of FluidNC on the ESP32 boards
Here the Uploader for the installation of FluidNC on the ESP32 boards. The programs are from https://github.com/bdring/FluidNC
## Installation
Installation:

View File

@@ -1,5 +1,5 @@
import serial
ser = serial.Serial("/dev/ttyS0", 115200, timeout=1)
ser = serial.Serial("/dev/ttyUSB0", 115200, timeout=1)
#ser.write(open("Config_DollarDollar.txt","rb").read())
@@ -10,9 +10,9 @@ ser.write(serialcmd.encode())
print(serialcmd)
f = open("Config_DollarDollar.txt","rb")
#for l in f:
#print(l)
#ser.write(l)
for l in f:
print(l)
ser.write(l)
print("test")
@@ -20,4 +20,4 @@ while ser.in_waiting > 0:
line = ser.readline().decode('utf-8').rstrip()
print(line)
ser.close()
ser.close()

View File

@@ -0,0 +1 @@
esptool.py --chip esp32 elf2image -o firmware.bin firmware.elf

Binary file not shown.

Binary file not shown.