07-05-2017, 07:44 AM
Hi all!
This is an update although specifically for the Pinebook I just received, it might work on the Pine64+.
I just ran the update scripts on /usr/local/sbin/ (kernel,uboot and package) to update to version 0.5.5 on my Pinebook 14".
I gathered some information from other forums and this is my small list of instructions I followed to make Arduino IDE 1.8.3 work on the Pinebook (compiling and loading).
Info to install Arduino IDE in Pine64
https://forum.arduino.cc/index.php?topic=400808.0
1. Download the ARM version of Arduino IDE (1.8.3)
2. Run the ./install script in the folder arduino-1.X.X
3. Add armhf architecture support
4. Install some 32 bit libraries (armhf)
5. Set permissions for accessing serial port:
It took a while to open the app, but once opened it was fast and compiled very fast.
Still have to try this on the Pine64+.
This is an update although specifically for the Pinebook I just received, it might work on the Pine64+.
I just ran the update scripts on /usr/local/sbin/ (kernel,uboot and package) to update to version 0.5.5 on my Pinebook 14".
I gathered some information from other forums and this is my small list of instructions I followed to make Arduino IDE 1.8.3 work on the Pinebook (compiling and loading).
Info to install Arduino IDE in Pine64
https://forum.arduino.cc/index.php?topic=400808.0
1. Download the ARM version of Arduino IDE (1.8.3)
2. Run the ./install script in the folder arduino-1.X.X
3. Add armhf architecture support
Code:
sudo dpkg --add-architecture armhf
4. Install some 32 bit libraries (armhf)
Code:
sudo apt-get install libxtst6:armhf
sudo apt-get install libxrender1:armhf
sudo apt-get install libxi6:armhf
sudo apt-get install openjdk-8-jre:armhf
sudo apt-get install libxft2:armhf
5. Set permissions for accessing serial port:
Code:
sudo usermod -a -G dialout pine64
sudo chmod a+rw /dev/ttyACM0
It took a while to open the app, but once opened it was fast and compiled very fast.
Still have to try this on the Pine64+.