mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-19 02:22:21 +08:00
feef09a190
- dashboard is totally outdated... - keep radioframe as an example...
19 lines
358 B
Python
Executable File
19 lines
358 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import wx
|
|
import radiowatchframe
|
|
|
|
class RadioWatchApp(wx.App):
|
|
def OnInit(self):
|
|
self.main = radiowatchframe.RadioWatchFrame()
|
|
self.main.Show()
|
|
self.SetTopWindow(self.main)
|
|
return True
|
|
|
|
def main():
|
|
application = RadioWatchApp(0)
|
|
application.MainLoop()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|