Mercurial > templog
view py/gpio_rpi.py @ 548:b3dc81bee5b3
scaled zooming works
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 27 May 2015 22:37:43 +0800 |
parents | dd8895652485 |
children | d9b819dcac53 |
line wrap: on
line source
import os import RPi.GPIO as GPIO from utils import L,D,EX,W __all__ = ["Gpio"] class Gpio(object): def __init__(self, pin, name): self.pin = pin self.name = name GPIO.setmode(GPIO.BOARD) GPIO.setup(self.pin, GPIO.OUT) def turn(self, value): self.state = bool(value) GPIO.output(self.pin, self.state) def get_state(self): return GPIO.input(self.pin)