+        wx.Panel.__init__(self, parent, -1)
+        self.log = log
+
+        wx.StaticText(self, -1, "This is a timer example", (15, 30))
+        wx.Button(self, ID_Start, ' Start ', (15, 75), wx.DefaultSize)
+        wx.Button(self, ID_Stop, ' Stop ', (115, 75), wx.DefaultSize)
+
+        self.timer = wx.Timer(self,      # object to send the event to
+                              ID_Timer)  # event id to use