Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
Full desktop Surfing and ...
Forum: General Discussion on Pinebook Pro
Last Post: Pattienner
Yesterday, 10:35 PM
» Replies: 2
» Views: 393
|
Any recommended brands/mo...
Forum: Pinebook Pro Hardware and Accessories
Last Post: fnfgopro
Yesterday, 08:38 PM
» Replies: 2
» Views: 815
|
Thoughts after a year wit...
Forum: General Discussion on Pinebook Pro
Last Post: tantamount
Yesterday, 02:25 PM
» Replies: 3
» Views: 580
|
Upgrading Armbian from v2...
Forum: Linux on Pinebook Pro
Last Post: Sb2024
08-09-2025, 06:53 AM
» Replies: 1
» Views: 707
|
Hello from Ukraine
Forum: P64-LTS / SOPINE Projects, Ideas and Tutorials
Last Post: Dendrocalamus64
08-08-2025, 07:13 PM
» Replies: 1
» Views: 59
|
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
08-08-2025, 04:48 PM
» Replies: 5
» Views: 335
|
PulseAudio dropouts after...
Forum: Linux on Pinebook Pro
Last Post: Dendrocalamus64
08-08-2025, 02:39 PM
» Replies: 2
» Views: 187
|
Simple Outdoor Weather St...
Forum: General Discussion on PineTab
Last Post: aria22
08-08-2025, 12:47 PM
» Replies: 0
» Views: 76
|
Armbian fix, current vers...
Forum: Linux on Pinebook Pro
Last Post: Sb2024
08-08-2025, 08:49 AM
» Replies: 0
» Views: 61
|
Experimental Mobian kerne...
Forum: PinePhone Pro Software
Last Post: teekay
08-08-2025, 05:39 AM
» Replies: 2
» Views: 191
|
|
|
Rock64 vs pine64 |
Posted by: advait - 07-07-2017, 02:14 AM - Forum: Android on Rock64
- Replies (9)
|
 |
Hi community
What will be changes in OS functionalities and overall ( hardware+ OS) performance in Rock64 compared to pine64.
Will there be changes in android animation, browser and youtube video performance.
Asking this because I want to use it as a PC replacement.
|
|
|
Apps not working |
Posted by: milkaca - 07-06-2017, 03:43 PM - Forum: Android on Pinebook
- No Replies
|
 |
Minecraft pocket edition and OpenVPN for Android applications doesn't work on Android. Minecraft doesn't start at all and OpenVPN establish a connection but with no Internet and start to reconnect after some time.
|
|
|
A7.1 eMMC install image (unofficial!) |
Posted by: Luke - 07-06-2017, 01:03 PM - Forum: Android on Pinebook
- Replies (19)
|
 |
By popular demand I modified a Ubuntu Mate installer as per my instructions here to install latest pre-release Android 7.1 image to your Pinebook's eMMC (NB: disregard the message that its installing Ubuntu in the installer - it will install Android).
This is not an official image so I am just tossing it up on google drive for those who want to try it. Also, I have not tested if it works - so it may not. Do let me know if it doesn't. I have done this in the past and worked just fine so I expect there won't be any issues.
Here is the google drive link
edit 2: Removed the image because apparently the image did not work.
Follow this simple procedure:
1) Flash the ubuntu install image to SD
2) mount rootfs of the installer
3) delete the pinebook.img (please check, I cant remember if thats what its called)
4) rename A7.1 image to 'pinbook.img'
5) copy the renamed A7.1 image to the installers rootfs
6) put the SD into your Pinebook
edit: Do not update SudoSu - it breaks the installation
|
|
|
Sound coming out both speakers and headphones |
Posted by: eclay - 07-06-2017, 09:15 AM - Forum: Pinebook Hardware and Accessories
- Replies (8)
|
 |
Hello,
I've noticed that when I attempt to plugin headphones to my pinebook and play a video that sound still comes out the internal speakers and the headphones. Is this how it's supposed to work? Any ideas how to troubleshoot or fix this?
I'm running the default ubuntu mate on it and I poked around in the sound settings and didn't find anything there that looked like the answer to this problem.
|
|
|
HDMI Compatability |
Posted by: rahlquist - 07-06-2017, 08:19 AM - Forum: General Discussion on PINE A64(+)
- Replies (5)
|
 |
So, its been a good while. The question is, has anything been done with any of the OS that has increased HDMI compatibility, or is it still shi%t? The main reason I bought the Pine64 was to use it as a playback device with Plex since it touted its 4k compatibility, and since even a Pi can work with nearly all HDMI devices I expected this to work, but every time I have tried only one Tv/Monitor in my house out of 5 works.
|
|
|
GPIO LED blinker using SYSFS on the Rock64 |
Posted by: MarkHaysHarris777 - 07-06-2017, 03:41 AM - Forum: General Discussion on ROCK64
- Replies (20)
|
 |
In the above pic I'm blinking an LED at physical pin(16) of the Rock64, GPIO3_A5, on the PI-2 bus;
... to use the sysfs method of setting the pin on|off one must first calculate the gpio# using the following:
( bank_num * 32 ) + ( pad_name * 8 ) + pad_num
where pad names = {A:0, B:1, C:2, D:3}
In the above example the bank_num is 3 , pad_name is 0*8, and the pad_num is 5 , so:
( 3 * 32 ) + ( 0 * 8 ) + 5 = 101
The following steps are used to set the gpio pin on|off:
1) sudo -i
2) echo 101 > /sys/class/gpio/export
3) echo out > /sys/class/gpio/gpio101/direction
4) echo 1 > /sys/class/gpio/gpio101/value <--ON
5) echo 0 > /sys/class/gpio/gpio101/value <--OFF
The following codes will blink gpio101 at pin(16), GPIO3_A5: blinker.sh and sysled.sh are closely related scripts. The former is a controlled loop, and the latter is a forever running loop; both are useful. Compare the two script and notice that they are almost identical.
blinker.sh
Code: #!/bin/sh
echo $1 > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio$1/direction
COUNTER=0
while [ $COUNTER -lt $2 ]; do
echo 1 > /sys/class/gpio/gpio$1/value
sleep .35
echo 0 > /sys/class/gpio/gpio$1/value
sleep .65
COUNTER=$(($COUNTER+1))
done
echo $1 > /sys/class/gpio/unexport
To run blinker enter two parameters; the first the gpio#, and the second the number of times you want it to blink!
sudo ./blinker.sh 101 7
(will blink gpio101 seven times)
sysled.sh
Code: #!/bin/sh
echo $1 > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio$1/direction
COUNTER=0
while [ $COUNTER -lt 10 ]; do
echo 1 > /sys/class/gpio/gpio$1/value
sleep .35
echo 0 > /sys/class/gpio/gpio$1/value
sleep .65
done
To run sysled:
sudo -b ./sysled.sh 101
(will strobe gpio101 forever)
( remember to cd into the working directory where you place the script )
( also, don't forget to make the script executable: chmod 0754 sysled.sh )
In the pic above I have attached the grey wire at ground pin(14), and the orange wire at pin(16).
The anode of the LED is attached at the orange wire, and the cathode of the LED is attached to the grey wire through the ballast resistor , which is 330 ohms. The LED is a low power (5-7ma) 3mm standard LED.
I have so far tested the blue pins ( see chart ) and the green pins. DO NOT use the blue pins if you're using the micro SD card ! If you're booting from the eMMC module (as I am) then the blue pins and most of the green pins are available to you;
|
|
|
|