- Timestamp:
- 05/30/07 16:02:58 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
experimental/components/image_display/trunk/image_display/WorkModule.py
r4027 r4030 83 83 # debuggin loop - outputs the data that I'm getting 84 84 for x in range(len(bytesIn)): 85 print bytesIn[ 0] # print the first byte85 print bytesIn[x] # print the first byte 86 86 87 87 # put display code here … … 92 92 93 93 image = wx.Image("/sdr/buddha.jpg", wx.BITMAP_TYPE_JPEG) # load a jpeg from file. maybe start out with None 94 self.image_display_ref. app.refresh(image) #set94 self.image_display_ref.prnt_orb.prnt_frame.refresh(image) 95 95 96 96 # # not sure if I need this code: