-
Notifications
You must be signed in to change notification settings - Fork 0
/
sensorLight.py
49 lines (43 loc) · 1.33 KB
/
sensorLight.py
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
#!/usr/bin/python
# -*- coding: latin-1 -*-
import gpio
from time import sleep
class sensorLight:
def __init__(self, gpio_int = 26):
self.__Leuchte = gpio.GPIOout(gpio_int)
def activate(self, boolLeuchte):
return self.SetLeuchte(True, boolLeuchte)
def deactivate(self, boolLeuchte):
return self.SetLeuchte(False, boolLeuchte)
def SetLeuchte(self, LeuchteAn, boolLeuchte):
boolL = boolLeuchte
if LeuchteAn:
iI = 0
while iI < 3:
# print 'an' + str(iI)
self.__Leuchte.on()
sleep(0.1)
self.__Leuchte.off()
sleep(0.1)
iI = iI + 1
# 1 Konstant an
# 2 Pulse schnell
# 3 Pulse langsam
boolL = True
else:
iI = 0
while iI < 5:
# print 'aus' + str(iI)
self.__Leuchte.on()
sleep(0.1)
self.__Leuchte.off()
sleep(0.1)
iI = iI + 1
# 4 Lauf links langsam
# 5 Lauf rechts langsam
# 6 Lauf links schnell
# 7 Lauf links rechts
# 8 Aus
boolL = False
return boolL
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4