Merge branch 'master' of github.com:jamesbowman/i2cdriver

This commit is contained in:
James Bowman 2019-03-03 13:26:49 -08:00
commit b8198d9813
1 changed files with 5 additions and 2 deletions

View File

@ -6,6 +6,8 @@ import re
import threading
from functools import partial
import serial.tools.list_ports as slp
import wx
import wx.lib.newevent as NE
@ -242,7 +244,9 @@ class Frame(wx.Frame):
self.stop()
def devices(self):
if sys.platform == 'darwin':
if sys.platform == 'win32':
return {pi.device: pi.device for pi in slp.comports()}
elif sys.platform == 'darwin':
devdir = "/dev/"
pattern = "^cu.usbserial-(.*)"
else:
@ -312,7 +316,6 @@ class Frame(wx.Frame):
def set_speed(self, e):
w = e.EventObject
s = int(w.GetString(w.GetCurrentSelection()))
print(s)
self.sd.setspeed(s)
def hot(self, i, s):