Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,560
» Latest member: nicolaos
» Forum threads: 16,213
» Forum posts: 116,979

Full Statistics

Latest Threads
Tips for accurate reading...
Forum: General
Last Post: jaydenlord07
11 hours ago
» Replies: 0
» Views: 287
Wifi 5Ghz Issue
Forum: PineNote Software
Last Post: nicolaos
Yesterday, 06:36 PM
» Replies: 0
» Views: 439
Special keys stopped work...
Forum: General Discussion on PineNote
Last Post: nicolaos
Yesterday, 06:04 PM
» Replies: 1
» Views: 6,894
the self built bl602_boot...
Forum: Getting Started
Last Post: pinecheng
09-16-2025, 02:15 PM
» Replies: 2
» Views: 1,420
Why projects like PinePho...
Forum: General Discussion on PinePhone
Last Post: Gary2003
09-16-2025, 01:13 PM
» Replies: 13
» Views: 9,631
Cannot flash the modem fi...
Forum: Mobian on PinePhone
Last Post: anonymous
09-16-2025, 12:18 PM
» Replies: 7
» Views: 2,865
Star64 Irradium (based on...
Forum: Getting Started
Last Post: mara
09-16-2025, 11:18 AM
» Replies: 8
» Views: 5,889
Mobian MMS/SMS text probl...
Forum: Mobian on PinePhone
Last Post: georgegohl888
09-15-2025, 02:42 AM
» Replies: 16
» Views: 21,596
Default password for KDE ...
Forum: General Discussion on PinePhone
Last Post: Toni
09-14-2025, 06:35 PM
» Replies: 0
» Views: 2,189
My Phone stopped making a...
Forum: PinePhone Hardware
Last Post: tracyanne
09-14-2025, 03:30 PM
» Replies: 0
» Views: 2,596

 
  screen recorder help
Posted by: Shady2tree - 03-23-2016, 10:18 PM - Forum: General Discussion on PINE A64(+) - Replies (2)

I am looking for a screen record program suggestions . Free would be best as of right now Im just using the AMD software one. Im thinking about making a couple of youtube videos about some of the things im going to put my PINE64 2G through just to see how well it stands up one idea is a Camera vest for my dog.

just looking to get some gears turning


  Turning it on....
Posted by: Mbarton84 - 03-23-2016, 11:51 AM - Forum: Getting Started - Replies (4)

So......  How exactly do you turn the thing on? Is it supposed to turn on by itself when you plug it in or am I supposed to solder on a power switch? I can't find any info anywhere on that or any videos of people actually turning one on. Help would be appreciated!!


  Way to boot quickly in to a single java application?
Posted by: MostHated - 03-23-2016, 09:30 AM - Forum: Linux on Pine A64(+) - Replies (8)

Hello all, my project (once complete and setup) will only serve one purpose, to quickly boot directly in to a java application. What is the best distro to use and the best way to go about making it boot as quickly as possible and directly in to a java application? The only thing that would eventually be needed once completed is the bluetooth, and touchscreen drivers working, everything else could be disabled.

I see in the Pine64 update today that people have made and released many different distros that will work on the pine, is it possible to have someone make one that is an extremely fast booting "headless" one, in which people could just change the startup script to select the application they want to quickly boot to?


  Z-wave module compatibility?
Posted by: Yomet - 03-23-2016, 06:51 AM - Forum: POT modules - Replies (2)

Hi,

I am wondering if the Z-wave module developed for the PINE will work on a Raspberry PI B+/2/3?

Thx


  Home Media Center
Posted by: Myszaks - 03-23-2016, 05:51 AM - Forum: Pine A64 Projects, Ideas and Tutorials - Replies (2)

Hi.
My idea is to connect Pine to Hi-fi and then to be able to stream wirelessly music from in ex tablet/smartphone or just connect to Pine wirelessly. Would it be better to intall RemixOs or some Linux based Os?


  Help needed Install Android using Mac OS X
Posted by: gubaguba - 03-23-2016, 05:10 AM - Forum: Getting Started - Replies (4)

PhoenixCard app is not really an option for me as the several computers I am running are all Mac OSX. I do have a netbook running Mint Linux. Looking for option that will work for the OS I have.  Also any specific Allwinner requirements might be helpful. I am comfortable with CLI and did a recent install of MintLinux with a formatted USB thumb drive from the Mac. Sure it is possible but need to be pointed in the right direction.


  Zwave AU compatible
Posted by: mist42nz - 03-23-2016, 01:31 AM - Forum: POT modules - Replies (1)

Hi whats the status of the Pine64 boards with regards to the ZWave?  (can't complete survey)

Do all boards have this feature?
Is so, in our region we have to have one that operates on legal frequencies; can you let us know when that will be available please.


  sound bar
Posted by: hazerty - 03-23-2016, 12:57 AM - Forum: Pine A64 Projects, Ideas and Tutorials - Replies (5)

I see the sound bar in actu n'33, It is a good idea, 

I would like to do the same project.

anyone know how to have the source of this project..?

thanks you


  How to determine GPIO numbers?
Posted by: joey - 03-22-2016, 09:38 PM - Forum: Pi2, Euler and Exp GPIO Ports - Replies (3)

I've been experimenting with some of the GPIOs on my Pine, and I think I figured out how to talk to them using /sys/class/gpio. Unlike the Pi, which I am coming from, the GPIO numbers are different. I found another resource on the web that said in order to get the GPIO number for a different chip, you need to take the letter from the Pin number, convert it to a number, subtract 1, multiply by 32, then add the listed GPIO number. I thought that was strange, but figured I'd give it a try. For example, I wanted to write to the Pi 2 pin #16, which is GPIO 23. I did the folllowing:

Using the document attached to this post, I determined the pin I want is PC13.

P="Pin", we don't care about this.
C=3rd letter in alphabet, but we're nerds, we count from zero, so C=2 (subtract 1)
13=GPIO 23 We just use the raw number, I can't math.

So we take 2 and multiply it by 32, which seems to be a magic number. I'm sure it has significance to someone, but not a n00b like me. 2*32 = 64. Now we add 64+13 from the pin out document to get a final result of 77.

Then, as root, I changed into /sys/class/gpio and enabled the GPIO:

Code:
cd /sys/class/gpio
echo 77 > export
cd gpio77
echo "out" > direction
echo 1 > value
After doing that, hurrah, my LED lit up. The anode (positive) of the LED is connected to the pin mentioned above, the cathode (negative) is connected to one of the pins labeled GND.

I just wanted to share this with everyone because it took me an hour or so of google searches until I figured this out. It may be documented somewhere else on this site, but so far I couldn't find anything. For reference, I'm doing all my experimentation in longsleep's 3/20 build of Ubuntu 16.04 "Xenial."


Question Bent board? Post here.
Posted by: pine.tree - 03-22-2016, 09:34 PM - Forum: General Discussion on PINE A64(+) - Replies (1)

I am looking to see how many people actually got a bent board, and if it impacted the function of the board. Post below with your results.