Skip to content

Commit

Permalink
Fixed error on line 74
Browse files Browse the repository at this point in the history
  • Loading branch information
Suyash458 committed May 30, 2017
1 parent c20320a commit d32492f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SoftOscilloscope.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def start(self):
class SerialPlot(BasePlot):
def __init__(self, com_port, baud_rate, **kwargs):
self.serial_port = serial.Serial()
self.serial_port.baud_rate = baud_rate
self.serial_port.baudrate = baud_rate
self.serial_port.port = com_port
super(SerialPlot, self).__init__(self.serial_port, **kwargs)

Expand Down

0 comments on commit d32492f

Please sign in to comment.