PySimpleGUI/Demo_Pi_Robotics.py

100 lines
3.9 KiB
Python
Raw Normal View History

2018-09-27 20:24:09 +00:00
#!/usr/bin/env python
import sys
if sys.version_info[0] >= 3:
2018-09-27 20:24:09 +00:00
import PySimpleGUI as sg
else:
import PySimpleGUI27 as sg
2018-07-31 14:53:55 +00:00
# Robotics design pattern
# Uses Realtime Buttons to simulate the controls for a robot
# Rather than sending a single click when a button is clicked, Realtime Buttons
# send button presses continuously while the button is pressed down.
# Two examples, one using fancy graphics, one plain.
def RemoteControlExample():
# Make a form, but don't use context manager
2018-09-08 03:23:45 +00:00
sg.SetOptions(element_padding=(0,0))
2018-07-31 14:53:55 +00:00
back ='#eeeeee'
image_forward = 'ButtonGraphics/RobotForward.png'
image_backward = 'ButtonGraphics/RobotBack.png'
image_left = 'ButtonGraphics/RobotLeft.png'
image_right = 'ButtonGraphics/RobotRight.png'
2018-09-08 03:23:45 +00:00
2018-07-31 14:53:55 +00:00
sg.SetOptions(border_width=0, button_color=('black', back), background_color=back, element_background_color=back, text_element_background_color=back)
2018-09-08 03:23:45 +00:00
layout = [[sg.Text('Robotics Remote Control')],
2018-09-08 03:23:45 +00:00
[sg.T('', justification='center', size=(19,1), key='status')],
[ sg.RealtimeButton('Forward', image_filename=image_forward, pad=((50,0),0))],
[ sg.RealtimeButton('Left', image_filename=image_left), sg.RealtimeButton('Right', image_filename=image_right, pad=((50,0), 0))],
[ sg.RealtimeButton('Reverse', image_filename=image_backward, pad=((50,0),0))],
2018-07-31 14:53:55 +00:00
[sg.T('')],
[sg.Quit(button_color=('black', 'orange'))]]
2018-07-31 14:53:55 +00:00
window = sg.Window('Robotics Remote Control', auto_size_text=True, grab_anywhere=False).Layout(layout)
2018-07-31 14:53:55 +00:00
#
# Some place later in your code...
# You need to perform a ReadNonBlocking on your form every now and then or
# else it won't refresh.
#
# your program's main loop
while (True):
# This is the code that reads and updates your window
event, values = window.ReadNonBlocking()
if event is not None:
window.FindElement('status').Update(event)
2018-07-31 14:53:55 +00:00
else:
window.FindElement('status').Update('')
2018-07-31 14:53:55 +00:00
# if user clicked quit button OR closed the form using the X, then break out of loop
if event == 'Quit' or values is None:
2018-07-31 14:53:55 +00:00
break
window.CloseNonBlocking()
2018-07-31 14:53:55 +00:00
def RemoteControlExample_NoGraphics():
# Make a form, but don't use context manager
2018-09-08 03:23:45 +00:00
layout = [[sg.Text('Robotics Remote Control', justification='center')],
2018-09-08 03:23:45 +00:00
[sg.T('', justification='center', size=(19,1), key='status')],
[sg.T(' '*8), sg.RealtimeButton('Forward')],
2018-09-08 03:23:45 +00:00
[ sg.RealtimeButton('Left'), sg.T(' '), sg.RealtimeButton('Right')],
[sg.T(' '*8), sg.RealtimeButton('Reverse')],
2018-07-31 14:53:55 +00:00
[sg.T('')],
[sg.Quit(button_color=('black', 'orange'))]]
2018-07-31 14:53:55 +00:00
# Display form to user
window = sg.Window('Robotics Remote Control', auto_size_text=True, grab_anywhere=False).Layout(layout)
2018-07-31 14:53:55 +00:00
#
# Some place later in your code...
# You need to perform a ReadNonBlocking on your form every now and then or
# else it won't refresh.
#
# your program's main loop
while (True):
# This is the code that reads and updates your window
event, values = window.ReadNonBlocking()
if event is not None:
window.FindElement('status').Update(event)
2018-07-31 14:53:55 +00:00
else:
window.FindElement('status').Update('')
2018-07-31 14:53:55 +00:00
# if user clicked quit button OR closed the form using the X, then break out of loop
if event == 'Quit' or values is None:
2018-07-31 14:53:55 +00:00
break
window.CloseNonBlocking()
2018-07-31 14:53:55 +00:00
# ------------------------------------- main -------------------------------------
def main():
RemoteControlExample_NoGraphics()
# Uncomment to get the fancy graphics version. Be sure and download the button images!
2018-08-09 17:18:04 +00:00
RemoteControlExample()
2018-09-08 03:23:45 +00:00
# sg.Popup('End of non-blocking demonstration')
2018-07-31 14:53:55 +00:00
if __name__ == '__main__':
main()