Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
Binary file removed ._.DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.DS_Store
*.pyc
Binary file removed Python/DigiBlink/source/arduino/__init__.pyc
Binary file not shown.
Binary file removed Python/DigiBlink/source/arduino/usbdevice.pyc
Binary file not shown.
Binary file removed Python/DigiBlink/windows/arduino/__init__.pyc
Binary file not shown.
Binary file removed Python/DigiBlink/windows/arduino/usbdevice.pyc
Binary file not shown.
Binary file removed Python/DigiUSB/.DS_Store
Binary file not shown.
Binary file removed Python/DigiUSB/._.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed Python/DigiUSB/source/arduino/__init__.pyc
Binary file not shown.
Binary file removed Python/DigiUSB/source/arduino/usbdevice.pyc
Binary file not shown.
7 changes: 5 additions & 2 deletions Python/DigiUSB/source/digiscope.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def create_main_panel(self):
self.volts.SetFont(font)

self.hbox1.Add(self.volts, border=5, flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL)
self.hbox1.AddSpacer([100,1])
self.hbox1.Add(100,1)
self.hbox1.Add(self.pause_button, border=5, flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL)

self.vbox = wx.BoxSizer(wx.VERTICAL)
Expand All @@ -123,7 +123,10 @@ def init_plot(self):
self.fig = Figure((16.0, 6.0), dpi=self.dpi)

self.axes = self.fig.add_subplot(111)
self.axes.set_axis_bgcolor('black')
if hasattr(self.axes, 'set_facecolor'):
self.axes.set_facecolor('black')
else:
self.axes.set_axis_bgcolor('black')
self.axes.set_title('Digispark Scope', size=8)


Expand Down
Binary file removed Python/DigiUSB/windows/arduino/__init__.pyc
Binary file not shown.
Binary file removed Python/DigiUSB/windows/arduino/usbdevice.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.