<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[PINE64 - Pine A64 Projects, Ideas and Tutorials]]></title>
		<link>https://forum.pine64.org/</link>
		<description><![CDATA[PINE64 - https://forum.pine64.org]]></description>
		<pubDate>Sat, 16 May 2026 00:20:19 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Java U8g2]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=15141</link>
			<pubDate>Wed, 20 Oct 2021 15:36:32 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=4602">sgjava</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=15141</guid>
			<description><![CDATA[<a href="https://github.com/sgjava/java-u8g2" target="_blank" rel="noopener" class="mycode_url">Java U8g2</a> is a high performance library based on <a href="https://github.com/olikraus/u8g2" target="_blank" rel="noopener" class="mycode_url">U8g2</a>: Library for monochrome displays, version 2. Rather than try to code the JNI by hand I used HawtJNI to generate the JNI wrappers. I also used some custom code to generate the HawtJNI methods and font constants. This makes life easier going forawrd as changes are simple to keep in sync.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>final var u8g2 = U8g2.initU8g2();<br />
// Change this to your actual display<br />
U8g2.setupSsd1306I2c128x64NonameF(u8g2, U8G2_R0, u8x8_byte_arm_linux_hw_i2c, u8x8_arm_linux_gpio_and_delay);<br />
U8g2.initDisplay(u8g2);<br />
logger.debug(String.format("Size %d x %d, draw color %d", U8g2.getDisplayWidth(u8g2), U8g2.getDisplayHeight(u8g2), U8g2.<br />
        getDrawColor(u8g2)));<br />
U8g2.setPowerSave(u8g2, 0);<br />
U8g2.clearBuffer(u8g2);<br />
U8g2.setFont(u8g2, u8g2_font_t0_15b_mf);<br />
U8g2.drawStr(u8g2, 1, 18, "Java U8g2");<br />
U8g2.sendBuffer(u8g2);<br />
try {<br />
    TimeUnit.SECONDS.sleep(5);<br />
} catch (InterruptedException ie) {<br />
    Thread.currentThread().interrupt();<br />
}<br />
U8g2.setPowerSave(u8g2, 1);<br />
U8g2.done(u8g2);</code></div></div>]]></description>
			<content:encoded><![CDATA[<a href="https://github.com/sgjava/java-u8g2" target="_blank" rel="noopener" class="mycode_url">Java U8g2</a> is a high performance library based on <a href="https://github.com/olikraus/u8g2" target="_blank" rel="noopener" class="mycode_url">U8g2</a>: Library for monochrome displays, version 2. Rather than try to code the JNI by hand I used HawtJNI to generate the JNI wrappers. I also used some custom code to generate the HawtJNI methods and font constants. This makes life easier going forawrd as changes are simple to keep in sync.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>final var u8g2 = U8g2.initU8g2();<br />
// Change this to your actual display<br />
U8g2.setupSsd1306I2c128x64NonameF(u8g2, U8G2_R0, u8x8_byte_arm_linux_hw_i2c, u8x8_arm_linux_gpio_and_delay);<br />
U8g2.initDisplay(u8g2);<br />
logger.debug(String.format("Size %d x %d, draw color %d", U8g2.getDisplayWidth(u8g2), U8g2.getDisplayHeight(u8g2), U8g2.<br />
        getDrawColor(u8g2)));<br />
U8g2.setPowerSave(u8g2, 0);<br />
U8g2.clearBuffer(u8g2);<br />
U8g2.setFont(u8g2, u8g2_font_t0_15b_mf);<br />
U8g2.drawStr(u8g2, 1, 18, "Java U8g2");<br />
U8g2.sendBuffer(u8g2);<br />
try {<br />
    TimeUnit.SECONDS.sleep(5);<br />
} catch (InterruptedException ie) {<br />
    Thread.currentThread().interrupt();<br />
}<br />
U8g2.setPowerSave(u8g2, 1);<br />
U8g2.done(u8g2);</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Java Periphery with JDK 17 support]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=15056</link>
			<pubDate>Fri, 08 Oct 2021 14:09:21 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=4602">sgjava</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=15056</guid>
			<description><![CDATA[<span style="color: #64676f;" class="mycode_color"><span style="font-family: 'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><a href="https://github.com/sgjava/java-periphery" target="_blank" rel="noopener" class="mycode_url"><span style="text-decoration: underline;" class="mycode_u">Java Periphery </span></a>is a high performance library for GPIO, LED, PWM, SPI, I2C, MMIO and Serial peripheral I/O interface access in userspace Linux. Rather than try to build this from scratch I used c-periphery and <a href="https://github.com/sgjava/hawtjni" target="_blank" rel="noopener" class="mycode_url"><span style="text-decoration: underline;" class="mycode_u">HawtJNI</span></a> to generate the JNI wrappers. This saves a lot of hand coding and allows for easier synchronization with c-periphery changes moving forward.<br />
 <br />
I believe this is the only userspace IO library that supports the new JDK 17 LTS (and still supports JDK 11). I had to fork HawtJNI to make it work with JDK 17. The only caveat is that ARM32 supports JDK 11. For some reason I cannot find a JDK 17 for ARM32 or information on why is was not supported. The install script handles this automatically. ARM64/x86/x86_64 uses JDK 17.</span></span>]]></description>
			<content:encoded><![CDATA[<span style="color: #64676f;" class="mycode_color"><span style="font-family: 'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><a href="https://github.com/sgjava/java-periphery" target="_blank" rel="noopener" class="mycode_url"><span style="text-decoration: underline;" class="mycode_u">Java Periphery </span></a>is a high performance library for GPIO, LED, PWM, SPI, I2C, MMIO and Serial peripheral I/O interface access in userspace Linux. Rather than try to build this from scratch I used c-periphery and <a href="https://github.com/sgjava/hawtjni" target="_blank" rel="noopener" class="mycode_url"><span style="text-decoration: underline;" class="mycode_u">HawtJNI</span></a> to generate the JNI wrappers. This saves a lot of hand coding and allows for easier synchronization with c-periphery changes moving forward.<br />
 <br />
I believe this is the only userspace IO library that supports the new JDK 17 LTS (and still supports JDK 11). I had to fork HawtJNI to make it work with JDK 17. The only caveat is that ARM32 supports JDK 11. For some reason I cannot find a JDK 17 for ARM32 or information on why is was not supported. The install script handles this automatically. ARM64/x86/x86_64 uses JDK 17.</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Pine64 based IP KVM]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=10972</link>
			<pubDate>Thu, 06 Aug 2020 06:05:21 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=15956">tuaris</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=10972</guid>
			<description><![CDATA[There is a project that lets you turn a Pi into an IP KVM for a very reasonable cost:<br />
<a href="https://github.com/pikvm/pikvm" target="_blank" rel="noopener" class="mycode_url">https://github.com/pikvm/pikvm</a><br />
<br />
It currently requires getting an additional accessory for DVI input.<br />
<br />
It would be nice if there was some version of the Pine64 that has a built in HDMI input port and supports OTG.]]></description>
			<content:encoded><![CDATA[There is a project that lets you turn a Pi into an IP KVM for a very reasonable cost:<br />
<a href="https://github.com/pikvm/pikvm" target="_blank" rel="noopener" class="mycode_url">https://github.com/pikvm/pikvm</a><br />
<br />
It currently requires getting an additional accessory for DVI input.<br />
<br />
It would be nice if there was some version of the Pine64 that has a built in HDMI input port and supports OTG.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Pine 64 as Smart Speaker via Bluetooth]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=10369</link>
			<pubDate>Sun, 21 Jun 2020 09:28:59 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=8131">Partymack711</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=10369</guid>
			<description><![CDATA[Hi,<br />
<br />
I am looking to use the Pine64 as the ‘brains’ to make a ‘dumb’ speaker ‘smart’. <br />
<br />
I have limited coding skills so I want to use proprietary software and hardware to do this. <br />
<br />
The theory I have is to use an inexpensive Bluetooth speaker with built in mic (like this one: <a href="https://www.amazon.co.uk/gp/aw/d/B07BBQVRT4#Ask" target="_blank" rel="noopener" class="mycode_url">Bluetooth Speaker</a>) pair it via BT with Pine64 and then use the google assistant app from Play store. <br />
<br />
Any reason why this might not work? Anybody tried this already?]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I am looking to use the Pine64 as the ‘brains’ to make a ‘dumb’ speaker ‘smart’. <br />
<br />
I have limited coding skills so I want to use proprietary software and hardware to do this. <br />
<br />
The theory I have is to use an inexpensive Bluetooth speaker with built in mic (like this one: <a href="https://www.amazon.co.uk/gp/aw/d/B07BBQVRT4#Ask" target="_blank" rel="noopener" class="mycode_url">Bluetooth Speaker</a>) pair it via BT with Pine64 and then use the google assistant app from Play store. <br />
<br />
Any reason why this might not work? Anybody tried this already?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Help Request build linux image]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=9647</link>
			<pubDate>Sun, 12 Apr 2020 10:48:32 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=17314">aaronmarsh632</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=9647</guid>
			<description><![CDATA[Hi everyone,<br />
<br />
I just hoped someone can point me in the right direction please? I'd like to experiment with getting a couple of linux distros running on my Pine A64 which dont have any official images, are there any instructions available on how to build an image for this? I have 1 of tge original boards from the kickstarter campaign if this matters. I thought if there are any steps that need to be taken and things I should know then I can apply the build process to diffeent distros I use to see what I can get working well on my Pine.<br />
<br />
Any advice would be greatly appreciated.<br />
<br />
Many Thanks]]></description>
			<content:encoded><![CDATA[Hi everyone,<br />
<br />
I just hoped someone can point me in the right direction please? I'd like to experiment with getting a couple of linux distros running on my Pine A64 which dont have any official images, are there any instructions available on how to build an image for this? I have 1 of tge original boards from the kickstarter campaign if this matters. I thought if there are any steps that need to be taken and things I should know then I can apply the build process to diffeent distros I use to see what I can get working well on my Pine.<br />
<br />
Any advice would be greatly appreciated.<br />
<br />
Many Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Mastodon instance \ Nextcloud Server]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=9532</link>
			<pubDate>Sat, 28 Mar 2020 03:24:15 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=17162">fearg</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=9532</guid>
			<description><![CDATA[Hi everyone,<br />
<br />
First time posting on this forum and completely new to single-board computing.<br />
<br />
I have a lot of time on my hands due to college and work being cancelled due to COVID-19, so I ordered myself a PINE A64+ 2GB and it should arrive soon. Very excited to start messing around with it.<br />
<br />
My intentions for this board are<br />
<br />
&gt;Initially use it as a chip flasher to flash coreboot onto the BIOS chip of my Thinkpad. All of the tutorials I have seen call for a Raspberry Pi but I don't see why the PINE64 shouldn't be able to do the job. Maybe I will write a tutorial if it goes well!<br />
<br />
&gt;I live in a collective house. I would like to turn this device into an internet-connected Nextcloud server that I could give an account to each of my housemates if they want it.<br />
<br />
&gt;I will also like to set up an instance of Mastodon for the users in the house.<br />
<br />
I do wonder if I'm asking too much of this board, for it to be a Nextcloud server and Mastodon server at the same time? What do you think?<br />
<br />
I'll let everyone know how I get on.]]></description>
			<content:encoded><![CDATA[Hi everyone,<br />
<br />
First time posting on this forum and completely new to single-board computing.<br />
<br />
I have a lot of time on my hands due to college and work being cancelled due to COVID-19, so I ordered myself a PINE A64+ 2GB and it should arrive soon. Very excited to start messing around with it.<br />
<br />
My intentions for this board are<br />
<br />
&gt;Initially use it as a chip flasher to flash coreboot onto the BIOS chip of my Thinkpad. All of the tutorials I have seen call for a Raspberry Pi but I don't see why the PINE64 shouldn't be able to do the job. Maybe I will write a tutorial if it goes well!<br />
<br />
&gt;I live in a collective house. I would like to turn this device into an internet-connected Nextcloud server that I could give an account to each of my housemates if they want it.<br />
<br />
&gt;I will also like to set up an instance of Mastodon for the users in the house.<br />
<br />
I do wonder if I'm asking too much of this board, for it to be a Nextcloud server and Mastodon server at the same time? What do you think?<br />
<br />
I'll let everyone know how I get on.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PINE64 to allow use of SATA disk on network/FTP]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=8292</link>
			<pubDate>Tue, 12 Nov 2019 07:26:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=15390">mwelbourne</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=8292</guid>
			<description><![CDATA[Hi. I'm looking for a low cost way of being able to access an 2TB SATA drive across my home network and hopefully the internet. I was looking at using a Raspberry Pi but someone has suggested using a PINE64 because it should be easier to connect the drive. I'm totally new to PINE64, I'd not heard of it until a few days ago.<br />
<br />
The drive won't ever be accessed that often, it just seems like a better solution with more access that just having inside a PC.<br />
<br />
So, my current thinking is to get a PINE64, probably the 2GB verison, a decent SD card, install openmedia vault, attach the drive to the board and connect the board to my wifi router.<br />
<br />
Does this sound like a good plan?<br />
<br />
If I'm attaching a SATA drive then I think I can't use and enclosed case?]]></description>
			<content:encoded><![CDATA[Hi. I'm looking for a low cost way of being able to access an 2TB SATA drive across my home network and hopefully the internet. I was looking at using a Raspberry Pi but someone has suggested using a PINE64 because it should be easier to connect the drive. I'm totally new to PINE64, I'd not heard of it until a few days ago.<br />
<br />
The drive won't ever be accessed that often, it just seems like a better solution with more access that just having inside a PC.<br />
<br />
So, my current thinking is to get a PINE64, probably the 2GB verison, a decent SD card, install openmedia vault, attach the drive to the board and connect the board to my wifi router.<br />
<br />
Does this sound like a good plan?<br />
<br />
If I'm attaching a SATA drive then I think I can't use and enclosed case?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[video scoring device for competition skydiving]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=7647</link>
			<pubDate>Sun, 30 Jun 2019 05:33:48 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=12438">strictdev</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=7647</guid>
			<description><![CDATA[Hello, my name is Gary and i'm addicted to technology. I've been developing a handheld device to review video, score points and submit scoresheets. The last couple of months i've been hacking on the raspberry pis with good success. Until I made a 50 item order from adafruit to make a few units, let's just say customer service isn't great at adafruit. After I ordered, I noticed a few items stayed in my cart and weren't added to the shipment. Bringing this up to the adafruit support prompted them to turn package around mid-transit back to the warehouse, cancel my order, and told me to find a new supplier. So here i am.<br />
<br />
Here is the current project i'm working on, I'm looking into redesigning these cases for the Pine H64 vB to serve the same purpose.<br />
<a href="https://imgur.com/gallery/94BSP7J" target="_blank" rel="noopener" class="mycode_url">https://imgur.com/gallery/94BSP7J</a><br />
<a href="https://www.thingiverse.com/thing:3711469" target="_blank" rel="noopener" class="mycode_url">https://www.thingiverse.com/thing:3711469</a><br />
<br />
The current software side consists of GUIslice as the touchscreen interface, with omxplayer sending video to the hdmi screen. I've been using the videocore layering abilities to overlay dynamically generated png images over the video as well. The buttons are configured for scoring points and busts during video replay, additionally for touchscreen interface navigation when not playing video.<br />
<br />
I'm not sure what comparable touchscreen I should look into, as I can modify this design to fit just about anything., the 3.5" screen size seems to be a good overall size for this device. I have lots to learn in the pine64 community and will be updating this thread as my project progresses.<br />
<br />
Appreciate any advice and constructive criticism from the community. Thanks!]]></description>
			<content:encoded><![CDATA[Hello, my name is Gary and i'm addicted to technology. I've been developing a handheld device to review video, score points and submit scoresheets. The last couple of months i've been hacking on the raspberry pis with good success. Until I made a 50 item order from adafruit to make a few units, let's just say customer service isn't great at adafruit. After I ordered, I noticed a few items stayed in my cart and weren't added to the shipment. Bringing this up to the adafruit support prompted them to turn package around mid-transit back to the warehouse, cancel my order, and told me to find a new supplier. So here i am.<br />
<br />
Here is the current project i'm working on, I'm looking into redesigning these cases for the Pine H64 vB to serve the same purpose.<br />
<a href="https://imgur.com/gallery/94BSP7J" target="_blank" rel="noopener" class="mycode_url">https://imgur.com/gallery/94BSP7J</a><br />
<a href="https://www.thingiverse.com/thing:3711469" target="_blank" rel="noopener" class="mycode_url">https://www.thingiverse.com/thing:3711469</a><br />
<br />
The current software side consists of GUIslice as the touchscreen interface, with omxplayer sending video to the hdmi screen. I've been using the videocore layering abilities to overlay dynamically generated png images over the video as well. The buttons are configured for scoring points and busts during video replay, additionally for touchscreen interface navigation when not playing video.<br />
<br />
I'm not sure what comparable touchscreen I should look into, as I can modify this design to fit just about anything., the 3.5" screen size seems to be a good overall size for this device. I have lots to learn in the pine64 community and will be updating this thread as my project progresses.<br />
<br />
Appreciate any advice and constructive criticism from the community. Thanks!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[gpio operate without sudo]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=7366</link>
			<pubDate>Thu, 11 Apr 2019 01:28:47 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=11494">mohammed ismayil</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=7366</guid>
			<description><![CDATA[Board used rock64 OS Bionic minimal 0.7.11.Issue :Gpio script have been executing properly with sudo as per guidence in my project. But while using GPIO script, python modules has not been imported (Example numpy etc).this python module have been installed by pip command.Please help on this]]></description>
			<content:encoded><![CDATA[Board used rock64 OS Bionic minimal 0.7.11.Issue :Gpio script have been executing properly with sudo as per guidence in my project. But while using GPIO script, python modules has not been imported (Example numpy etc).this python module have been installed by pip command.Please help on this]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Setup Pine64+ with OP-TEE]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=6537</link>
			<pubDate>Thu, 13 Sep 2018 21:23:18 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=9194">stdys</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=6537</guid>
			<description><![CDATA[Hi,<br />
<br />
I'm looking for explanations on how to setup a trusted OS in parallel with a normal world OS on the PINE64+, I've already checked the instructions present on the OP-TEE but there are no clear explanation of what steps should be followed and how the file should be put in the micro SD. I would like to know if anyone has already succeeded to setup OP-TEE (and ARM Trusted Firmware) on this board ?]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I'm looking for explanations on how to setup a trusted OS in parallel with a normal world OS on the PINE64+, I've already checked the instructions present on the OP-TEE but there are no clear explanation of what steps should be followed and how the file should be put in the micro SD. I would like to know if anyone has already succeeded to setup OP-TEE (and ARM Trusted Firmware) on this board ?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[split] Node-RED]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=6264</link>
			<pubDate>Sun, 08 Jul 2018 01:58:31 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=596">neeeds</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=6264</guid>
			<description><![CDATA[Hi, does it have gpio support ? <br />
thank you.]]></description>
			<content:encoded><![CDATA[Hi, does it have gpio support ? <br />
thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[GPIO Python developer needed]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=5835</link>
			<pubDate>Sun, 11 Mar 2018 12:58:28 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=7299">barucha</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=5835</guid>
			<description><![CDATA[Hello all<br />
<br />
I'm looking for an interesting and great project, a developer.<br />
It's very simple challenge. just sending a signal out and look for it in the input. <br />
<br />
Please comment here. <br />
Thanks]]></description>
			<content:encoded><![CDATA[Hello all<br />
<br />
I'm looking for an interesting and great project, a developer.<br />
It's very simple challenge. just sending a signal out and look for it in the input. <br />
<br />
Please comment here. <br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Nextcloud running on Pine64]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=5594</link>
			<pubDate>Thu, 18 Jan 2018 11:28:29 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=346">gbjensen</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=5594</guid>
			<description><![CDATA[I had a Pine64+ (2GB) board, a 2TB USB drive and a 5V, 4A power supply.<br />
I had a Armbian server installation on it already for a local Samba file server.<br />
<br />
But I did then got a good idea:<br />
<br />
Why not add a Nextcloud server to my project ?<br />
<br />
I found a guideline at nextcloud.com and after an hour or two was my own private cloud up and running.<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://forum.pine64.org/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1100" target="_blank" title="">server.JPG</a> (Size: 236.97 KB / Downloads: 1111)
<!-- end: postbit_attachments_attachment --><br />
<br />
It has been very stable and fast for two weeks now, I'm using it daily for sharing files.<br />
<br />
But It's recommended to have fixed IP address and a domain name to your server, and naturally some open ports at your router (port 445 as far as I remember)<br />
<br />
You can see more here at this Danish Pine64 facebook group : <a href="https://www.facebook.com/groups/594492207364691/" target="_blank" rel="noopener" class="mycode_url">https://www.facebook.com/groups/594492207364691/</a>]]></description>
			<content:encoded><![CDATA[I had a Pine64+ (2GB) board, a 2TB USB drive and a 5V, 4A power supply.<br />
I had a Armbian server installation on it already for a local Samba file server.<br />
<br />
But I did then got a good idea:<br />
<br />
Why not add a Nextcloud server to my project ?<br />
<br />
I found a guideline at nextcloud.com and after an hour or two was my own private cloud up and running.<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://forum.pine64.org/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1100" target="_blank" title="">server.JPG</a> (Size: 236.97 KB / Downloads: 1111)
<!-- end: postbit_attachments_attachment --><br />
<br />
It has been very stable and fast for two weeks now, I'm using it daily for sharing files.<br />
<br />
But It's recommended to have fixed IP address and a domain name to your server, and naturally some open ports at your router (port 445 as far as I remember)<br />
<br />
You can see more here at this Danish Pine64 facebook group : <a href="https://www.facebook.com/groups/594492207364691/" target="_blank" rel="noopener" class="mycode_url">https://www.facebook.com/groups/594492207364691/</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Industrial applications]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=5269</link>
			<pubDate>Mon, 16 Oct 2017 05:03:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=7669">g_magic</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=5269</guid>
			<description><![CDATA[Hello , <br />
I am curious about whether the pine A64+ can be used to create industrial device for data monitoring using serial and TCP/IP modbus communication. Is there any such product in market implementing the Pine A64+ ? Thank you.]]></description>
			<content:encoded><![CDATA[Hello , <br />
I am curious about whether the pine A64+ can be used to create industrial device for data monitoring using serial and TCP/IP modbus communication. Is there any such product in market implementing the Pine A64+ ? Thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Laptop build]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=5230</link>
			<pubDate>Sat, 07 Oct 2017 12:21:29 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=7620">jhip626</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=5230</guid>
			<description><![CDATA[Would I be able to use a screen like this for a display?<br />
For Samsung Galaxy Tab 3 10.1" GT-P5200 P5210 P5200 LCD Display Panel Screen Monitor Repair Replacement<br />
 <a href="http://s.aliexpress.com/3iqMV3AV" target="_blank" rel="noopener" class="mycode_url">http://s.aliexpress.com/3iqMV3AV</a> <br />
(from AliExpress Android)<br />
I would imagine I would need some sort of converter board, idk if something like that exists, but I need an inexpensive display that's around 10". It doesn't have to be touch screen.<br />
<br />
Sent from my BLN-L24 using Tapatalk]]></description>
			<content:encoded><![CDATA[Would I be able to use a screen like this for a display?<br />
For Samsung Galaxy Tab 3 10.1" GT-P5200 P5210 P5200 LCD Display Panel Screen Monitor Repair Replacement<br />
 <a href="http://s.aliexpress.com/3iqMV3AV" target="_blank" rel="noopener" class="mycode_url">http://s.aliexpress.com/3iqMV3AV</a> <br />
(from AliExpress Android)<br />
I would imagine I would need some sort of converter board, idk if something like that exists, but I need an inexpensive display that's around 10". It doesn't have to be touch screen.<br />
<br />
Sent from my BLN-L24 using Tapatalk]]></content:encoded>
		</item>
	</channel>
</rss>