Difference between revisions of "ROS Raspberry Pi Demo"

From wikidb
Jump to: navigation, search
(References)
(References)
 
(11 intermediate revisions by the same user not shown)
Line 7: Line 7:
 
*  [https://learn.adafruit.com/adafruits-raspberry-pi-lesson-4-gpio-setup/configuring-i2c Adafruit configuring I2C on Raspberry Pi]
 
*  [https://learn.adafruit.com/adafruits-raspberry-pi-lesson-4-gpio-setup/configuring-i2c Adafruit configuring I2C on Raspberry Pi]
 
*  [http://wiki.ros.org/ROS/Tutorials ROS Tutorials]
 
*  [http://wiki.ros.org/ROS/Tutorials ROS Tutorials]
 +
*  [http://www.robopgmr.com/?p=4281 tf]
  
= References =
+
= Execution =
  
* [http://wiki.ros.org/ROSberryPi/Installing%20ROS%20Indigo%20on%20Raspberry%20Pi ROS on Raspberry Pi]
+
Demo the ROS installation.
* [http://www.robopgmr.com/?p=4281 tf]
+
 
 +
terminal 1
 +
 
 +
  roscore
 +
 
 +
terminal 2
 +
 
 +
  cd catkin_ws/
 +
  source devel/setup.bash
 +
  rosrun motor_hat motor_hat_node
 +
 
 +
terminal 3
 +
 
 +
  rosnode list
 +
  rostopic list
 +
  rostopic echo cmd
 +
 
 +
terminal 4
 +
 
 +
  cd catkin_ws/
 +
  source devel/setup.bash
 +
  rosrun motor_hat stop.py
 +
  rosrun motor_hat on.py
 +
 
 +
TBD - QUESTION - Why isn't the message often not received by the motor_hat_node?
 +
 
 +
= Code Inspection =
 +
 
 +
The next line can be added to ~/.bashrc.
 +
  source ~/catkin_ws/devel/setup.bash
 +
 
 +
  roscd hat_node
 +
  pwd
 +
  cd src
 +
  ls
 +
 
 +
Look at the code
 +
 
 +
  emacs on.py&
 +
  emacs motor_hat_node_cpp&
 +
 
 +
If emacs isn't installed use nano.
 +
 
 +
  nano on.py

Latest revision as of 20:20, 24 February 2017

References

Execution

Demo the ROS installation.

terminal 1

 roscore

terminal 2

 cd catkin_ws/
 source devel/setup.bash 
 rosrun motor_hat motor_hat_node 

terminal 3

 rosnode list
 rostopic list
 rostopic echo cmd

terminal 4

 cd catkin_ws/
 source devel/setup.bash
 rosrun motor_hat stop.py 
 rosrun motor_hat on.py 

TBD - QUESTION - Why isn't the message often not received by the motor_hat_node?

Code Inspection

The next line can be added to ~/.bashrc.

 source ~/catkin_ws/devel/setup.bash
 
 roscd hat_node
 pwd
 cd src
 ls

Look at the code

 emacs on.py&
 emacs motor_hat_node_cpp&

If emacs isn't installed use nano.

 nano on.py