added config prefix
This commit is contained in:
@@ -7,7 +7,7 @@ class Changer(object):
|
||||
self.local_state = local_state
|
||||
self.remote_state = remote_state
|
||||
GPIO.setmode(GPIO.BCM) # Broadcom pin-numbering scheme
|
||||
GPIO.setup(GPIO_PIN_VALVE, GPIO.OUT)
|
||||
GPIO.setup(config.GPIO_PIN_VALVE, GPIO.OUT)
|
||||
|
||||
self.states = {
|
||||
'opening': self.open_valve,
|
||||
@@ -26,11 +26,11 @@ class Changer(object):
|
||||
return self.local_state
|
||||
|
||||
def open_valve():
|
||||
GPIO.output(GPIO_PIN_VALVE, GPIO.HIGH)
|
||||
GPIO.output(config.GPIO_PIN_VALVE, GPIO.HIGH)
|
||||
self.local_state['out_valve'] = 'open'
|
||||
|
||||
def close_valve():
|
||||
GPIO.output(GPIO_PIN_VALVE, GPIO.LOW)
|
||||
GPIO.output(config.GPIO_PIN_VALVE, GPIO.LOW)
|
||||
self.local_state['out_valve'] = 'closed'
|
||||
|
||||
def validate_states(self):
|
||||
|
||||
Reference in New Issue
Block a user