-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcar.py
91 lines (75 loc) · 2.79 KB
/
car.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
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
import RPi.GPIO as GPIO
import time
import curses
class car:
def __init__(self):
self.motor_a_enable = 17
self.motor_a_1 = 18
self.motor_a_2 = 23
self.motor_b_enable = 27
self.motor_b_1 = 24
self.motor_b_2 = 22
# Set up GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(self.motor_a_enable, GPIO.OUT)
GPIO.setup(self.motor_a_1, GPIO.OUT)
GPIO.setup(self.motor_a_2, GPIO.OUT)
GPIO.setup(self.motor_b_enable, GPIO.OUT)
GPIO.setup(self.motor_b_1, GPIO.OUT)
GPIO.setup(self.motor_b_2, GPIO.OUT)
# PWM setup
pwm_a = GPIO.PWM(self.motor_a_enable, 100)
pwm_b = GPIO.PWM(self.motor_b_enable, 100)
pwm_a.start(0)
pwm_b.start(0)
# Define GPIO pins (adjust as needed)
def forward(self):
GPIO.output(self.motor_a_1, GPIO.HIGH)
GPIO.output(self.motor_a_2, GPIO.LOW)
GPIO.output(self.motor_b_1, GPIO.HIGH)
GPIO.output(self.motor_b_2, GPIO.LOW)
print("ROBO FORWARD")
def backward(self):
GPIO.output(self.motor_a_1, GPIO.LOW)
GPIO.output(self.motor_a_2, GPIO.HIGH)
GPIO.output(self.motor_b_1, GPIO.LOW)
GPIO.output(self.motor_b_2, GPIO.HIGH)
print("ROBO BACKWARD")
def left(self):
GPIO.output(self.motor_a_1, GPIO.LOW)
GPIO.output(self.motor_a_2, GPIO.HIGH)
GPIO.output(self.motor_b_1, GPIO.HIGH)
GPIO.output(self.motor_b_2, GPIO.LOW)
print("ROBO LEFT")
def right(self):
GPIO.output(self.motor_a_1, GPIO.HIGH)
GPIO.output(self.motor_a_2, GPIO.LOW)
GPIO.output(self.motor_b_1, GPIO.LOW)
GPIO.output(self.motor_b_2, GPIO.HIGH)
print("ROBO RIGHT")
def stop(self):
GPIO.output(self.motor_a_1, GPIO.LOW)
GPIO.output(self.motor_a_2, GPIO.LOW)
GPIO.output(self.motor_b_1, GPIO.LOW)
GPIO.output(self.motor_b_2, GPIO.LOW)
# print("ROBO STOP")
def main(stdscr):
stdscr.nodelay(True) # Enable non-blocking input
try:
while True:
key = stdscr.getch()
if key == curses.KEY_UP:
forward()
elif key == curses.KEY_DOWN:
backward()
elif key == curses.KEY_LEFT:
left()
elif key == curses.KEY_RIGHT:
right()
else:
stop()
finally:
print("CODE")
if __name__ == "__main__":
rccar = car()
curses.wrapper(rccar.main()) # Initialize curses and handle cleanup