-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge with ws branch. New folder structure.
- Loading branch information
Showing
376 changed files
with
55,332 additions
and
628 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
35 changes: 0 additions & 35 deletions
35
DAGU_ROS_ws/src/DAGU_DriverStack/DAGU_MotorController/package.xml
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
DAGU_ROS_ws/src/DAGU_DriverStack/DAGU_MotorController/src/motorsController_node.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Install and build ros_catkin_ws | ||
cd ~/ros_catkin_ws | ||
rosinstall_generator ros_comm geometry_msgs --rosdistro indigo --deps --wet-only --exclude roslisp --tar > indigo-custom_ros.rosinstall | ||
|
||
# | ||
wstool merge -t src indigo-custom_ros.rosinstall | ||
wstool update -t src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
* Update certificates | ||
``` | ||
sudo apt-get install --reinstall ca-certificates | ||
``` | ||
|
||
Setup .gitconfig | ||
``` | ||
[http] | ||
sslVerify = true | ||
sslCAinfo = /etc/ssl/certs/ca-certificates.crt | ||
[user] | ||
email = [email protected] | ||
name = derekmolloy | ||
``` | ||
* Update apt-get archives | ||
``` | ||
$ sudo apt-get update | ||
``` | ||
* Install ssh | ||
``` | ||
$ sudo apt-get install openssh-server | ||
``` | ||
* Setup ssh (first time) | ||
``` | ||
$ ssh-keygen | ||
``` | ||
* Everytime? | ||
``` | ||
$ ssh-agent /bin/bash | ||
$ ssh-add ~/.ssh/id_rsa | ||
``` | ||
|
||
* Install git | ||
``` | ||
$ sudo apt-get install git | ||
``` | ||
|
||
* Run the runmeonrpi2.sh | ||
|
||
* Edit .bashrc file. Add this line | ||
``` | ||
source /opt/ros/indigo/setup.bash | ||
``` | ||
|
||
* Install packages | ||
``` | ||
sudo apt-get install ros-indigo-tf-conversions | ||
sudo apt-get install ros-indigo-cv-bridge | ||
sudo apt-get install ros-indigo-compressed-image-transport | ||
sudo apt-get install ros-indigo-camera-info-manager | ||
``` | ||
|
||
* Enable the camera | ||
Just modify the file /boot/firmware/config.txt is enough. | ||
Just add a line "start_x=1" at the bottom of the file config.txt, save it, and reboot the system. | ||
|
||
* Install picamera? | ||
``` | ||
$ sudo apt-get install python-pip | ||
$ sudo pip install picamera | ||
``` | ||
|
||
* [Get picamera to work](http://raspberrypi.stackexchange.com/questions/37359/how-to-use-raspistill-on-ubuntu) | ||
``` | ||
sudo base -c "echo 'start_x=1' >> /boot/config.txt" | ||
sudo base -c "echo 'gpu_mem=128' >> /boot/config.txt" | ||
``` | ||
|
||
``` | ||
git clone https://github.com/raspberrypi/userland.git | ||
cd userland | ||
./buildme | ||
touch ~/.bash_aliases | ||
echo 'PATH=$PATH:/opt/vc/bin\nexport' >> ~/.bash_aliases | ||
echo 'LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/vc/lib\nexport' >> ~/.bash_aliases | ||
source ~/.bashrc | ||
ldconfig | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
* Get Jessie at https://www.raspberrypi.org/downloads/raspbian/ | ||
* Follow https://www.raspberrypi.org/documentation/installation/installing-images/linux.md | ||
* Resize the partition to make use of the whole space of the sd card with GParted | ||
* Follow https://www.raspberrypi.org/documentation/installation/installing-images/linux.md to setup the camera | ||
* Follow http://wiki.ros.org/ROSberryPi/Installing%20ROS%20Indigo%20on%20Raspberry%20Pi to get ROS on there | ||
``` | ||
$ sudo apt-get install libconsole-bridge-dev | ||
$ sudo apt-get install liblz4-dev | ||
``` | ||
Need the add swap trick at http://raspberrypimaker.com/adding-swap-to-the-raspberrypi/ | ||
|
||
TODO: figure out the easiest way to install additional ROS packages. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.