forked from ideasxiang/r2auto_nav
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfly_sub3.py
More file actions
102 lines (83 loc) · 2.82 KB
/
Copy pathfly_sub3.py
File metadata and controls
102 lines (83 loc) · 2.82 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
# Copyright 2016 Open Source Robotics Foundation, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import rclpy
from rclpy.node import Node
import serial
from std_msgs.msg import String
import time
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
servo_pin = 4
GPIO.setup(servo_pin, GPIO.OUT)
p2= GPIO.PWM(servo_pin, 50)
p2.start(5.5)
wheel_pin = 23
# p=GPIO.PWM(wheel_pin,50)
GPIO.setup(wheel_pin, GPIO.OUT)
choice = 0
p = GPIO.PWM(wheel_pin, 50)
ser = serial.Serial('/dev/ttyUSB1', 115200, timeout=2)
class MinimalSubscriber(Node):
def __init__(self):
super().__init__('minimal_subscriber')
self.subscription = self.create_subscription(
String,
'fly',
self.listener_callback,
11)
self.subscription # prevent unused variable warning
def listener_callback(self, msg):
self.get_logger().info('I heard: "%s"' % msg.data)
if msg.data == "fly":
GPIO.output(wheel_pin, 1)
time.sleep(15)
GPIO.output(wheel_pin, 0)
time.sleep(3)
if "servo" in msg.data:
p2.ChangeDutyCycle(float(msg.data.split(',')[-1]))
time.sleep(1)
class MinimalPublisher(Node):
def __init__(self):
super().__init__('minimal_publisher')
self.publisher_ = self.create_publisher(String, 'temp', 12)
timer_period = 0.5 # seconds
self.timer = self.create_timer(timer_period, self.timer_callback)
def timer_callback(self):
readText = ser.readline()
decode = readText.decode('UTF-8')
msg = String()
msg.data = decode
self.publisher_.publish(msg)
self.get_logger().info('%s' % msg.data)
def main(args=None):
rclpy.init(args=args)
minimal_subscriber = MinimalSubscriber()
minimal_publisher = MinimalPublisher()
rclpy.spin(minimal_subscriber)
#rclpy.spin(minimal_publisher)
# Destroy the node explicitly
# (optional - otherwise it will be done automatically
# when the garbage collector destroys the node object)
minimal_subscriber.destroy_node()
minimal_publisher.destroy_node()
rclpy.shutdown()
if __name__ == '__main__':
try:
main()
except KeyboardInterrupt:
p2.stop()
p.stop()
GPIO.output(wheel_pin, 0)
GPIO.output(servo_pin, 0)
GPIO.cleanup()