Skip to content

Commit

Permalink
Added the debug mode UI screen shot.
Browse files Browse the repository at this point in the history
  • Loading branch information
LiuYuancheng committed May 26, 2023
1 parent e2aac3a commit 483e8ba
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,14 @@ Engineer Monitoring HMI running on engineer's laptop, the engineer can use it to

##### Engineer Monitoring HMI UI View

Normal Mode Controller UI:

![](doc/img/rail_way_480p.gif)

Debug Mode Controller UI:

![](doc/img/debugModeUI.png)



#### Design of Lecturer Training HMI
Expand Down
Binary file added doc/img/debugModeUI.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/railwayPanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,12 +743,12 @@ def buidUISizer(self):
self.ctrl = AnimationCtrl(self, -1, Animation(gv.TAGIF_PATH))
self.ctrl.Play()
sizer.Add(self.ctrl, flag=wx.LEFT |
wx.ALIGN_LEFT_HORIZONTAL, border=2)
wx.LEFT, border=2)
self.stTxt = wx.StaticText(
self, -1, "Your computer has been taken over by YC's Trojan, we will release control in 10 sec")
self.stTxt.SetBackgroundColour(wx.Colour('GREEN'))
self.stTxt.SetFont(wx.Font(30, wx.SWISS, wx.NORMAL, wx.NORMAL))
sizer.Add(self.stTxt, flag=wx.ALIGN_LEFT, border=2)
sizer.Add(self.stTxt, flag=wx.LEFT, border=2)
return sizer

#--TrojanAttFrame--------------------------------------------------------------
Expand Down

0 comments on commit 483e8ba

Please sign in to comment.