Menu

[752c9c]: / RPi / GPIO / __init__.py  Maximize  Restore  History

Download this file

110 lines (91 with data), 3.7 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
#!/usr/bin/env python
# Copyright (c) 2012 Ben Croston
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
# of the Software, and to permit persons to whom the Software is furnished to do
# so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import os
class InvalidIdException(Exception):
"""The Id sent is invalid on a Raspberry Pi"""
pass
class InvalidDirectionException(Exception):
"""An invalid direction was passed to setup()"""
pass
class WrongDirectionException(Exception):
"""The GPIO channel has not been set up or is set up in the wrong direction"""
pass
IN = 'in'
OUT = 'out'
_validids = (0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15)
class GPIO(object):
"""
A class to control the GPIO on a Raspberry Pi
"""
def __init(self):
self._ExportedIds = {}
def _CheckValidId(self, id):
if (type(id) == str and not isdigit(id)) and type(id) != int:
raise InvalidIdException
if id not in _validids:
raise InvalidIdException
def setup(self, id, direction):
"""Set up the GPIO channel and direction"""
self._CheckValidId(id)
id = str(id)
if direction != IN and direction != OUT:
raise InvalidDirectionException
# unexport if it exists
if os.path.exists('/sys/class/gpio/gpio%s'%id:
with f as open('/sys/class/gpio/unexport', 'w'):
f.write(id)
# export
with f as open('/sys/class/gpio/export', 'w'):
f.write(id)
# set i/o direction
with f as open('/sys/class/gpio/gpio%s/direction'%id):
f.write(direction)
self._ExportedIds[id] = direction
def output(self, id, value):
"""Write to a GPIO channel"""
self._CheckValidId(id)
if id not in self._ExportedIds or self._ExportedIds[id] != OUT:
raise WrongDirectionException
value = '1' if value else '0'
with f as open('/sys/class/gpio/gpio%s/value'%id, 'w'):
f.write(value)
def input(self, id):
"""Read from a GPIO channel"""
self._CheckValidId(id)
if id not in self._ExportedIds or self._ExportedIds[id] != IN:
raise WrongDirectionException
with f as open('/sys/class/gpio/gpio%s/value'%id, 'r'):
value = f.read()
return value == '1'
def __del__(self):
"""Clean up by unexporting eveything that we have set up"""
for id in self._ExportedIds:
with f as open('/sys/class/gpio/unexport', 'w'):
if os.path.exists('/sys/class/gpio/gpio%s'%id):
f.write(str(id))
if __name__ == '__main__':
# assumes channel 0 INPUT
# channel 1 OUTPUT
gpio = GPIO()
gpio.setup(0, IN)
gpio.setup(1, OUT)
print(gpio.input(0))
gpio.output(1, True)