Difference between revisions of "Raspberry PI"
Jump to navigation
Jump to search
(23 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
To run on a Raspberry PI you need a properly configured device. | To run on a Raspberry PI you need a properly configured device. | ||
− | + | See e.g. http://ion.bitplan.com/index.php/Ion2017-07-18#Raspberry_PI | |
+ | = Hardware = | ||
+ | See e.g. | ||
+ | https://images-na.ssl-images-amazon.com/images/I/31jEGhZmPdL.jpg | ||
+ | * https://www.amazon.de/gp/product/B01M0AT5O5 | ||
+ | https://images-na.ssl-images-amazon.com/images/I/91zSu44%2B34L._SL1500_.jpg | ||
+ | * https://www.amazon.de/gp/product/B01CD5VC92 | ||
+ | |||
+ | = Raspberry Setup = | ||
+ | You'll find setup guides all over the internet here are just two links: | ||
+ | * https://www.macworld.co.uk/how-to/mac/how-to-set-up-raspberry-pi-3-with-mac-3637490/ | ||
+ | * https://www.raspberrypi.org/downloads/raspbian/ | ||
+ | = Software configuration = | ||
<source lang='bash'> | <source lang='bash'> | ||
cat /etc/os-release | cat /etc/os-release | ||
Line 13: | Line 25: | ||
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs" | BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs" | ||
</source> | </source> | ||
+ | == Java 8 installation == | ||
+ | <source lang='bash'> | ||
+ | apt-get install oracle-java8-jdk | ||
+ | </source> | ||
+ | == Run script == | ||
+ | If you have an official touchscreen you can control the brightness of the screen with the darkmode button of can4eve. | ||
+ | |||
+ | You might want to make sure that you use the run script to start the app. The important lines are: | ||
+ | <source lang='bash'> | ||
+ | sudo chmod 0664 /sys/class/backlight/rpi_backlight/brightness | ||
+ | sudo chown root.pi /sys/class/backlight/rpi_backlight/brightness | ||
+ | </source> | ||
+ | == Autostart == | ||
+ | Example Can4Eve.desktop file to be placed in .config/autostart of your user. | ||
+ | Please adapt the exec line to where you installed can4eve | ||
+ | <source lang='bash'> | ||
+ | [Desktop Entry] | ||
+ | Type=Application | ||
+ | Name=Can4Eve | ||
+ | Comment=Onboard Diagnostic software for Electric Vehicles | ||
+ | NoDisplay=false | ||
+ | Exec=/home/wf/source/java/can4eve/run | ||
+ | </source> | ||
+ | |||
+ | You can make the desktop shortcut available on your desktop by creating a symbolic link from your Desktop | ||
+ | <source lang='bash'> | ||
+ | cd $HOME/Desktop | ||
+ | ln -s /home/wf/.config/autostart/Can4Eve.desktop | ||
+ | </source> | ||
+ | |||
+ | = Bluetooth = | ||
+ | See description of the Bluetooth dongle {{Link|target=OBDLink_LX}} |
Latest revision as of 10:27, 24 January 2019
To run on a Raspberry PI you need a properly configured device. See e.g. http://ion.bitplan.com/index.php/Ion2017-07-18#Raspberry_PI
Hardware
See e.g.
Raspberry Setup
You'll find setup guides all over the internet here are just two links:
- https://www.macworld.co.uk/how-to/mac/how-to-set-up-raspberry-pi-3-with-mac-3637490/
- https://www.raspberrypi.org/downloads/raspbian/
Software configuration
cat /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux 9 (stretch)"
NAME="Raspbian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
Java 8 installation
apt-get install oracle-java8-jdk
Run script
If you have an official touchscreen you can control the brightness of the screen with the darkmode button of can4eve.
You might want to make sure that you use the run script to start the app. The important lines are:
sudo chmod 0664 /sys/class/backlight/rpi_backlight/brightness
sudo chown root.pi /sys/class/backlight/rpi_backlight/brightness
Autostart
Example Can4Eve.desktop file to be placed in .config/autostart of your user. Please adapt the exec line to where you installed can4eve
[Desktop Entry]
Type=Application
Name=Can4Eve
Comment=Onboard Diagnostic software for Electric Vehicles
NoDisplay=false
Exec=/home/wf/source/java/can4eve/run
You can make the desktop shortcut available on your desktop by creating a symbolic link from your Desktop
cd $HOME/Desktop
ln -s /home/wf/.config/autostart/Can4Eve.desktop
Bluetooth
See description of the Bluetooth dongle OBDLink_LX