Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added libproj-dev and enabled pigpio service #9

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion build-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ EOM
}

function configure_ros() {
chroot $R apt-get -y install python-rosinstall python-wstool
chroot $R apt-get -y install python-rosinstall python-wstool libproj-dev
chroot $R rosdep init
# Overlay that has our custom dependencies
cat <<EOM >$R/etc/ros/rosdep/sources.list.d/30-ubiquity.list
Expand Down Expand Up @@ -598,6 +598,9 @@ function install_software() {
python-picamera python3-picamera \
python-rtimulib python3-rtimulib \
python-pygame

#enable pigpio daemon
chroot $R systemctl enable pigpiod

chroot $R pip2 install codebug_tether
chroot $R pip3 install codebug_tether
Expand Down