| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
Hacklink Panel - Hacklink...
Forum: Linux on Pinebook Pro
Last Post: WhiteRabbit0
Yesterday, 09:47 AM
» Replies: 0
» Views: 46
|
Real girls, real desire, ...
Forum: General
Last Post: llornkcor0
09-04-2026, 11:51 AM
» Replies: 0
» Views: 85
|
Thinking about memory bot...
Forum: General Discussion on Pinebook Pro
Last Post: xiley32050
09-02-2026, 01:21 AM
» Replies: 0
» Views: 162
|
Hardware Feature Suggesti...
Forum: Quartz64 Hardware and Accessories
Last Post: Independent Researcher
08-30-2026, 07:19 PM
» Replies: 0
» Views: 164
|
Single-board computers an...
Forum: General
Last Post: Spaker
08-29-2026, 08:12 PM
» Replies: 0
» Views: 173
|
Pinephone visibly losing ...
Forum: General Discussion on PinePhone
Last Post: baptx
08-29-2026, 11:18 AM
» Replies: 9
» Views: 8,557
|
Fixing the Quartz64 USB3 ...
Forum: Quartz64 Tutorials
Last Post: mig
08-28-2026, 01:32 AM
» Replies: 1
» Views: 13,042
|
Pinecil as a Pocket-Sized...
Forum: General
Last Post: Arsen
08-27-2026, 09:15 AM
» Replies: 0
» Views: 182
|
SlateOS feedback needed!
Forum: Development Discussion on PineTime
Last Post: highjumpman
08-24-2026, 08:00 AM
» Replies: 0
» Views: 319
|
Pinephone + Keyboard for ...
Forum: PinePhone Hardware
Last Post: Nambo
08-23-2026, 12:17 AM
» Replies: 18
» Views: 13,893
|
|
|
| How to Make a Pine with Android 7.0 Stay on All the Time? |
|
Posted by: Bob123456789 - 04-05-2017, 08:48 AM - Forum: Android on Pine A64(+)
- Replies (3)
|
 |
I have two pine's with Android that I want to make both stay on all of the time.
On the Pine with the system version 5.1.1 there is a way to set the screen saver so it always stays on.
On the Pine with system version 7.0 there no way I can see to set the screen saver so it will always stay on. The choices range from 15 seconds to 30 minutes.
How can I make the pine with the android version 7.0 stay on all of the time?
|
|
|
|
| Firefox crash |
|
Posted by: netpr - 04-05-2017, 06:44 AM - Forum: Debian
- Replies (8)
|
 |
hi friends.
Firefox crashes when downloading files with mega .Debian mate help me.thanks
|
|
|
|
| ir remote howto figure out which keys are being pressed? |
|
Posted by: abs0lut.zer0 - 04-04-2017, 06:20 AM - Forum: Remix OS
- Replies (1)
|
 |
hey all
i bought a ir remote which works fine except for the fact i cannot get up the delete [context menu] menu
how do i figure out which keys are being pressed with this remote in order to modify the keymap file for kodi to my liking...
is there a program that can tell what is the keycode this remote uses if i press a key?
thanks for any help..
|
|
|
|
| Wifi connect through terminal? |
|
Posted by: cheezmeister - 04-02-2017, 09:44 AM - Forum: Debian
- No Replies
|
 |
Hello,
I have on my SD card an image of dabone's OctoPine server and I cannot figure out a way to connect to wifi in Debian Base.
-Tom's Piano
|
|
|
|
| Adjust brightness of LCD on Armbian Desktop with 1 click |
|
Posted by: JulianM - 04-02-2017, 09:23 AM - Forum: LCD and Touch Panel
- No Replies
|
 |
Hello together!
I figured out how to adjust the bightness of the LCD with just 1 click on desktop with Armbian.
It's really not a big thing, but maybe some "newbies" may like this 
Thanks to pfeerick for his topic about LCD Support on Linux!
Step #1:
Create the script.
(Replace "YourUserName" with your username )
Code: nano /home/YourUserName/brightness.sh
Code: #!/bin/bash
bright=/sys/class/gpio/gpio362/value
if grep -q "0" $bright; then
sudo echo 1 > $bright
else
sudo echo 0 > $bright
fi
Save the file (F3) and close it (CTRL+X).
Code: chmod +x /home/YourUserName/brightness.sh
Step #2:
Using GPIO to increase/decrase.
Execute these commands as ROOT user!
Code: nano /home/YourUserName/gpio-brightness.sh
Code: #!/bin/bash
echo 362 > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio362/direction
Save the file (F3) and close it (CTRL+X).
Code: chmod +x /home/YourUserName/gpio-brightness.sh
Code: (crontab -l ; echo "@reboot /bin/bash /home/YourUserName/gpio-brightness.sh")| crontab -
Step #3:
Change sudoers settings
Execute these commands as ROOT user!
Add the following code to the end of the file:
Code: YourUserName ALL=NOPASSWD: /home/YourUserName/brightness.sh
Save the file (F3 if nano) and close it (CTRL+X if nano).
Step #4:
Add an icon to the taskbar (XFCE).
• Right click on the taskbar.
• Add a new element.
• Add a new "Launcher".
• Close the window and right click on the new launcher => Properties.
• Click on the right side "Create new object"
• Enter a custom Name for your Icon.
• Enter the command: sudo /home/YourUserName/brightness.sh
• You may set a icon.
• Create.
Step #5:
Now reboot your Pine64 and you're done!
Now you're able to change the brightness of the LCD with just 1 click!
It's nothing big as I already said
Best regards
Julian
|
|
|
|
|