Commit a7cdab4a authored by Arnaud WATLET's avatar Arnaud WATLET
Browse files

fixes minor issue

Showing with 2 additions and 2 deletions
+2 -2
......@@ -1476,9 +1476,9 @@ class OhmPi(object):
state : str
'on', 'off'
"""
self.pin2 = self.MCP_board.get_pin(2) # dsp -
self.pin2 = self.mcp_board.get_pin(2) # dsp -
self.pin2.direction = Direction.OUTPUT
self.pin3 = self.MCP_board.get_pin(3) # dsp -
self.pin3 = self.mcp_board.get_pin(3) # dsp -
self.pin3.direction = Direction.OUTPUT
if state == 'on':
self.pin2.value = True
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment