Add a ugly gui for espota
This commit is contained in:
parent
738ccfd14a
commit
b43feb922d
37
Updater.py
Normal file
37
Updater.py
Normal file
@ -0,0 +1,37 @@
|
||||
#!/usr/bin/env python
|
||||
from tkinter import *
|
||||
from tkinter import filedialog
|
||||
import subprocess
|
||||
|
||||
file = None
|
||||
def Install():
|
||||
|
||||
ip = e.get()
|
||||
print ("Installing ",file)
|
||||
print ("At ip ", ip)
|
||||
|
||||
if file != None:
|
||||
subprocess.call(["python", "espota.py", "-i", ip, "-f", file])
|
||||
|
||||
|
||||
def askopenfile():
|
||||
global file
|
||||
filename = filedialog.askopenfile(mode='r', filetypes=[('binaries', '*.bin')])
|
||||
file = filename.name
|
||||
|
||||
root = Tk()
|
||||
Ip = Text(root)
|
||||
|
||||
button_opt = {'fill': constants.BOTH, 'padx': 5, 'pady': 5}
|
||||
Button(root, text='Select firmware', command=askopenfile).pack(**button_opt)
|
||||
|
||||
e = Entry(root)
|
||||
e.pack()
|
||||
e.delete(0, END)
|
||||
e.insert(0, "192.168.0.XX")
|
||||
|
||||
buttonInstall = Button(root, text = 'Install', command = Install)
|
||||
buttonInstall.pack(pady=20, padx = 20)
|
||||
|
||||
|
||||
root.mainloop()
|
Loading…
Reference in New Issue
Block a user