質問編集履歴
2
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
予期しないイン
|
1
|
+
予期しないインデントが解決できない
|
test
CHANGED
File without changes
|
1
指摘されたソースコードの挿入を行った。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
VMwareを使用して仮想マシンを作成。
|
2
2
|
|
3
3
|
Ubuntu16.04を使用
|
4
|
-
|
5
|
-
言語 pythonを使用
|
6
4
|
|
7
5
|
エラーrosrun ros_start velocity_server.py
|
8
6
|
|
@@ -18,7 +16,7 @@
|
|
18
16
|
|
19
17
|
|
20
18
|
|
21
|
-
|
19
|
+
```python
|
22
20
|
|
23
21
|
#!/usr/bin/env python
|
24
22
|
|
@@ -62,7 +60,9 @@
|
|
62
60
|
|
63
61
|
is_set_success = False
|
64
62
|
|
65
|
-
if req.angular_velocity <= MAX_ANGULAR_VELOCITY and (
|
63
|
+
if req.angular_velocity <= MAX_ANGULAR_VELOCITY and (
|
64
|
+
|
65
|
+
req.angular_velocity >= MIN_ANGULAR_VELOCITY):
|
66
66
|
|
67
67
|
vel.angular.z = req.angular_velocity
|
68
68
|
|
@@ -88,4 +88,6 @@
|
|
88
88
|
|
89
89
|
service_server = rospy.Service('set_velocity', SetVelocity, velocity_handler)
|
90
90
|
|
91
|
-
rospy.spin()
|
91
|
+
rospy.spin()
|
92
|
+
|
93
|
+
```
|