-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGPIOtest.py
63 lines (47 loc) · 1.03 KB
/
GPIOtest.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
50
51
52
53
54
55
56
57
58
59
60
61
62
import RPi.GPIO as GPIO
import time
from gpiozero import Servo
import pigpio
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
REDLED = 22
GREENLED = 27
SERVO = 17
GPIO.setup(REDLED, GPIO.OUT)
GPIO.setup(GREENLED, GPIO.OUT)
# servo = Servo(17)
val = -1
pwm = pigpio.pi()
pwm.set_mode(SERVO, pigpio.OUTPUT)
pwm.set_PWM_frequency( SERVO, 50 )
print( "0 deg" )
pwm.set_servo_pulsewidth( SERVO, 500 ) ;
time.sleep( 3 )
print( "90 deg" )
pwm.set_servo_pulsewidth( SERVO, 1500 ) ;
time.sleep( 3 )
print( "180 deg" )
pwm.set_servo_pulsewidth( SERVO, 2500 ) ;
time.sleep( 3 )
# while True:
# servo.value = val
# time.sleep(0.1)
# val = val + 0.1
# if val > 1:
# val = -1
# break;
while True:
servo.min()
time.sleep(1)
servo.mid()
time.sleep(1)
servo.max()
time.sleep(1)
print("LED on")
GPIO.output(REDLED,GPIO.HIGH)
GPIO.output(GREENLED,GPIO.LOW)
time.sleep(1)
print("LED off")
GPIO.output(REDLED,GPIO.LOW)
GPIO.output(GREENLED,GPIO.HIGH)
time.sleep(1)