diff options
| author | gcohen | 2014-12-29 22:17:36 -0800 | 
|---|---|---|
| committer | gcohen | 2014-12-29 22:17:36 -0800 | 
| commit | b5795946f2243863484097d59379f12af5b42e02 (patch) | |
| tree | 076bac5a378d207ebbf98f27588a3d676ae1ca22 /python/examples | |
| parent | dedac1293a50196583f67150672103413d4d8eab (diff) | |
| download | pubnub-python-b5795946f2243863484097d59379f12af5b42e02.tar.bz2 | |
adding PN control
Diffstat (limited to 'python/examples')
| -rw-r--r-- | python/examples/futureHouse/futureHouse.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/python/examples/futureHouse/futureHouse.py b/python/examples/futureHouse/futureHouse.py index d017e94..f7486dd 100644 --- a/python/examples/futureHouse/futureHouse.py +++ b/python/examples/futureHouse/futureHouse.py @@ -15,7 +15,7 @@ StepPins = [26,24,22,19]  for pin in StepPins:      print "Setup pins"      GPIO.setup(pin,GPIO.OUT) -    GPIO.output(pin, False) +    GPIO.output(pin, True)  publish_key = len(sys.argv) > 1 and sys.argv[1] or 'demo-36' | 
