<?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 - Lithium and RTC Ports]]></title>
		<link>https://forum.pine64.org/</link>
		<description><![CDATA[PINE64 - https://forum.pine64.org]]></description>
		<pubDate>Sat, 18 Apr 2026 12:00:03 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Powering the A64 LTS from a LiPo]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=12420</link>
			<pubDate>Sun, 06 Dec 2020 04:51:20 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=20335">belsamber</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=12420</guid>
			<description><![CDATA[It took me a while to collect this information from across various threads and the schematic, so I wanted to summarise it back and hopefully make life easier for other people in future.<br />
<br />
I have an A64 LTS (2GB) and I am now powering it from a battery pack made of 4 x 18650 cells in parallel. It's also driving a medium sized LCD which is powered by USB, which resulted in some extra complexity in getting enough power to the USB port. <br />
<br />
So, points to note:<br />
<br />
<span style="font-weight: bold;" class="mycode_b">1. Battery temp sensor </span><br />
The middle wire on the battery connector either has to be connected to a thermistor or to a 10k resistor connected to GND, otherwise the battery will not charge (still powers things fine though)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">2. Power jumpers</span> <br />
There is a pair of jumpers on the board marked DC5V and BAT. According to the schematic, you should jump DC5V if you are powering just from the DC adaptor (default,) jump BAT if you are powering from battery, or have neither connected if you are powering from both. Since I was intending to use this in a portable device (like a laptop) I assumed "both" was correct and had none of the jumpers connected, however this did not give me enough power to the USB. I had to leave BAT jumpered. This seem to work fine - not sure if anyone would care to elaborate on what this actually does. I can see the DC5V jumper connects the DC adaptor to the 5V line, so I assume having it disconnected means that everything is being powered from the AXP803, but I can't figure out what the BAT jumper is doing... If anyone can explain that one to me, it would be great :-)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">3. Charging rates with high power USB devices</span> <br />
Once the battery was discharged, I was struggling with charging it again. It turns out that the Pine and the USB powered screen together were using almost exactly as much power as the AXP803 was putting out when on battery - actually with loaded CPU it was drawing from the battery even with the power adaptor plugged in which isn't great. Thankfully I could adjust the power draw from the DC adaptor using the following path:<br />
<br />
/sys/class/power_supply/axp813-ac/input_current_limit<br />
<br />
This was set to 1.5A, though according to the data sheet it supports up to 4A. The next higher supported value was 2A (0.5AS increments), which gave me enough headroom to run the device and charge without having to pull from the battery in high load situations. Massive win. The AXP803 does get warmer from pulling more current when the device is both in use and charging, but I have a 3A DC power supply, a well ventilated case and I added a heatsink to the power chip (an old one off an RPI3 set worked perfectly) so to my mind this is moderately safe... If anyone would like to tell me otherwise I'm all ears.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">4. Other useful battery tweaks</span> <br />
The other useful attributes are in:<br />
<br />
/sys/class/power_supply/axp20x-battery/<br />
<br />
Check the uevent file in that folder to see a summary of what is available - it includes the remaining capacity (percentage) so I'll be using this to drive a "low battery" LED. Notably here you can change the min/max voltage and the max charging current (default is 1.2A, max is 2.8A according to the data sheet, and it's settable in 0.2A increments.) I've kept these at defaults for now, but I may reduce the maximum charging voltage to 4.1V or lower since I have a tendency to use my battery powered devices plugged in a lot, and this slightly lower voltage should increase battery life. Theoretically I could increase the charging current since my battery pack is around 12Ah, but decided to limit the amount of time the AXP803 is working above "typical" values, so stayed with the default on this.<br />
<br />
I hope that's a useful summary for someone in future :-)]]></description>
			<content:encoded><![CDATA[It took me a while to collect this information from across various threads and the schematic, so I wanted to summarise it back and hopefully make life easier for other people in future.<br />
<br />
I have an A64 LTS (2GB) and I am now powering it from a battery pack made of 4 x 18650 cells in parallel. It's also driving a medium sized LCD which is powered by USB, which resulted in some extra complexity in getting enough power to the USB port. <br />
<br />
So, points to note:<br />
<br />
<span style="font-weight: bold;" class="mycode_b">1. Battery temp sensor </span><br />
The middle wire on the battery connector either has to be connected to a thermistor or to a 10k resistor connected to GND, otherwise the battery will not charge (still powers things fine though)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">2. Power jumpers</span> <br />
There is a pair of jumpers on the board marked DC5V and BAT. According to the schematic, you should jump DC5V if you are powering just from the DC adaptor (default,) jump BAT if you are powering from battery, or have neither connected if you are powering from both. Since I was intending to use this in a portable device (like a laptop) I assumed "both" was correct and had none of the jumpers connected, however this did not give me enough power to the USB. I had to leave BAT jumpered. This seem to work fine - not sure if anyone would care to elaborate on what this actually does. I can see the DC5V jumper connects the DC adaptor to the 5V line, so I assume having it disconnected means that everything is being powered from the AXP803, but I can't figure out what the BAT jumper is doing... If anyone can explain that one to me, it would be great :-)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">3. Charging rates with high power USB devices</span> <br />
Once the battery was discharged, I was struggling with charging it again. It turns out that the Pine and the USB powered screen together were using almost exactly as much power as the AXP803 was putting out when on battery - actually with loaded CPU it was drawing from the battery even with the power adaptor plugged in which isn't great. Thankfully I could adjust the power draw from the DC adaptor using the following path:<br />
<br />
/sys/class/power_supply/axp813-ac/input_current_limit<br />
<br />
This was set to 1.5A, though according to the data sheet it supports up to 4A. The next higher supported value was 2A (0.5AS increments), which gave me enough headroom to run the device and charge without having to pull from the battery in high load situations. Massive win. The AXP803 does get warmer from pulling more current when the device is both in use and charging, but I have a 3A DC power supply, a well ventilated case and I added a heatsink to the power chip (an old one off an RPI3 set worked perfectly) so to my mind this is moderately safe... If anyone would like to tell me otherwise I'm all ears.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">4. Other useful battery tweaks</span> <br />
The other useful attributes are in:<br />
<br />
/sys/class/power_supply/axp20x-battery/<br />
<br />
Check the uevent file in that folder to see a summary of what is available - it includes the remaining capacity (percentage) so I'll be using this to drive a "low battery" LED. Notably here you can change the min/max voltage and the max charging current (default is 1.2A, max is 2.8A according to the data sheet, and it's settable in 0.2A increments.) I've kept these at defaults for now, but I may reduce the maximum charging voltage to 4.1V or lower since I have a tendency to use my battery powered devices plugged in a lot, and this slightly lower voltage should increase battery life. Theoretically I could increase the charging current since my battery pack is around 12Ah, but decided to limit the amount of time the AXP803 is working above "typical" values, so stayed with the default on this.<br />
<br />
I hope that's a useful summary for someone in future :-)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Lithium battery temperature readout?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=9413</link>
			<pubDate>Thu, 12 Mar 2020 06:05:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=17023">GregH</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=9413</guid>
			<description><![CDATA[Loving the Pine A64 LTS so far. The integrated lithium battery management is great.<br />
<br />
I'm running Armbian Buster, and browsing through the data I can see most of what I'd like to see except the battery temperature<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/sys/class/power_supply/axp20x-battery/</code></div></div><br />
Is there a way to read the battery temperature?]]></description>
			<content:encoded><![CDATA[Loving the Pine A64 LTS so far. The integrated lithium battery management is great.<br />
<br />
I'm running Armbian Buster, and browsing through the data I can see most of what I'd like to see except the battery temperature<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/sys/class/power_supply/axp20x-battery/</code></div></div><br />
Is there a way to read the battery temperature?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Coin cell rapid discharge]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=6503</link>
			<pubDate>Wed, 05 Sep 2018 18:02:54 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=9157">Andrew Armstrong</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=6503</guid>
			<description><![CDATA[Hi people<br />
<br />
For the (probably a minority) who need to use the RTC backup with a coin cell:<br />
<br />
The RTC is powered from a 3V supply via a Schottky diode when the Pine64 or Sopine is powered. In theory, a coin cell should be able to back up the RTC when power is off so that a reasonable time reference is available even when there is no network.<br />
<br />
Lithium coin cells when new are significantly above 3V, and depending on temperature and newness could be up to 3.3V. This means that if the coin cell is connected via a similar diode, then the RTC will be powered from the coin cell even if the Sopine is fully powered, until the coin cell is partly discharged. <br />
<br />
A possible solution to this would be to increase the supply fed to the diode connected to the RTC pin to 3.3V. <br />
<br />
A solution we are testing for Buffalo Grid, on a custom baseboard for a Sopine, is to use a simple circuit with a P channel MOSFET (connected to conduct in the reverse direction to normal) and a P channel JFET, which is switched off (because it is depletion mode) by the 5V supply connected via a resistor to its gate. When the 5V supply falls below the threshold of the depletion fet, it switches on and that switches on the MOSFET, connecting coin cell to RTC pin.<br />
<br />
This only works for cells with a voltage slightly above 3V, because there is still the body diode of the MOSFET which can conduct if there is too large a voltage difference. However this is a junction diode so has a higher forward voltage and lower conduction at low voltages than a Schottky diode. We expect this to make the coin cell last a useful amount longer in its backup role.<br />
<br />
It might be a good idea to incorporate a fix for this problem on any new editions of Pine boards.<br />
<br />
-Andrew]]></description>
			<content:encoded><![CDATA[Hi people<br />
<br />
For the (probably a minority) who need to use the RTC backup with a coin cell:<br />
<br />
The RTC is powered from a 3V supply via a Schottky diode when the Pine64 or Sopine is powered. In theory, a coin cell should be able to back up the RTC when power is off so that a reasonable time reference is available even when there is no network.<br />
<br />
Lithium coin cells when new are significantly above 3V, and depending on temperature and newness could be up to 3.3V. This means that if the coin cell is connected via a similar diode, then the RTC will be powered from the coin cell even if the Sopine is fully powered, until the coin cell is partly discharged. <br />
<br />
A possible solution to this would be to increase the supply fed to the diode connected to the RTC pin to 3.3V. <br />
<br />
A solution we are testing for Buffalo Grid, on a custom baseboard for a Sopine, is to use a simple circuit with a P channel MOSFET (connected to conduct in the reverse direction to normal) and a P channel JFET, which is switched off (because it is depletion mode) by the 5V supply connected via a resistor to its gate. When the 5V supply falls below the threshold of the depletion fet, it switches on and that switches on the MOSFET, connecting coin cell to RTC pin.<br />
<br />
This only works for cells with a voltage slightly above 3V, because there is still the body diode of the MOSFET which can conduct if there is too large a voltage difference. However this is a junction diode so has a higher forward voltage and lower conduction at low voltages than a Schottky diode. We expect this to make the coin cell last a useful amount longer in its backup role.<br />
<br />
It might be a good idea to incorporate a fix for this problem on any new editions of Pine boards.<br />
<br />
-Andrew]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[AXP803 BC Detection - D+ and D- Pins]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=5424</link>
			<pubDate>Tue, 05 Dec 2017 00:56:32 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=7854">prkarls</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=5424</guid>
			<description><![CDATA[Hi All,<br />
<br />
I'm having issues getting the AXP803 to complete its BC Detection routine. Basically it hangs because the BC_status bit in Register 2C never changes from 1 to 0, indicating the detection is complete.<br />
<br />
On the Pine A64, the USB data connections (D+ and D-) are connected to both the AXP803 (DP and DM) and the A64 (USB0). I'm concerned that the connections to the A64 is affecting the BC Detection routine.<br />
<br />
Do either the AXP803 or A64 need to be configured a certain way while running this routine? There are a lot of control registers in the AXP803, but the documentation isn't very clear.<br />
<br />
Any help would be greatly appreciated.<br />
<br />
Thanks,<br />
<br />
Phillip]]></description>
			<content:encoded><![CDATA[Hi All,<br />
<br />
I'm having issues getting the AXP803 to complete its BC Detection routine. Basically it hangs because the BC_status bit in Register 2C never changes from 1 to 0, indicating the detection is complete.<br />
<br />
On the Pine A64, the USB data connections (D+ and D-) are connected to both the AXP803 (DP and DM) and the A64 (USB0). I'm concerned that the connections to the A64 is affecting the BC Detection routine.<br />
<br />
Do either the AXP803 or A64 need to be configured a certain way while running this routine? There are a lot of control registers in the AXP803, but the documentation isn't very clear.<br />
<br />
Any help would be greatly appreciated.<br />
<br />
Thanks,<br />
<br />
Phillip]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Battery level measurement?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=4213</link>
			<pubDate>Wed, 08 Mar 2017 18:54:11 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=6300">HugoRabson</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=4213</guid>
			<description><![CDATA[Does the board offer a way to measure the battery's output voltage? It would be good to estimate the remaining battery charge.]]></description>
			<content:encoded><![CDATA[Does the board offer a way to measure the battery's output voltage? It would be good to estimate the remaining battery charge.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Travelling with the Pine64 (and Lipo battery)]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=3413</link>
			<pubDate>Wed, 15 Feb 2017 23:29:47 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=474">psychedup</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=3413</guid>
			<description><![CDATA[I sometimes have to travel for work, and I'd love to be able to bring my pine64 with me.<br />
<br />
I've heard that LiPo batteries aren't allowed on air travel in the U.S., but I've also heard that only "spare" batteries are banned. The TSA website didn't clear things up, it just says it's up to the agent at the airport whether it's allowed or not. Who wants to wait until they're at the airport to find out they can't bring something?<br />
<br />
So I'm just curious if anyone here has travelled on a commercial flight with your Pine + LiPo battery, and if it was allowed?]]></description>
			<content:encoded><![CDATA[I sometimes have to travel for work, and I'd love to be able to bring my pine64 with me.<br />
<br />
I've heard that LiPo batteries aren't allowed on air travel in the U.S., but I've also heard that only "spare" batteries are banned. The TSA website didn't clear things up, it just says it's up to the agent at the airport whether it's allowed or not. Who wants to wait until they're at the airport to find out they can't bring something?<br />
<br />
So I'm just curious if anyone here has travelled on a commercial flight with your Pine + LiPo battery, and if it was allowed?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Battery temp pin?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=2938</link>
			<pubDate>Tue, 13 Dec 2016 17:25:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=5639">SvdSinner</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=2938</guid>
			<description><![CDATA[I will be building a custom enclosure and battery for my Pine.  I'd like to use the battery temperature pin. Is there a schematic of what it expects?  (I'm sure it must be thermistor based, but what thermistor and wired how?)  I'm guessing the expected output of that pin is hardwired into the board, or can it be configured via software?]]></description>
			<content:encoded><![CDATA[I will be building a custom enclosure and battery for my Pine.  I'd like to use the battery temperature pin. Is there a schematic of what it expects?  (I'm sure it must be thermistor based, but what thermistor and wired how?)  I'm guessing the expected output of that pin is hardwired into the board, or can it be configured via software?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[battery power in android]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=1900</link>
			<pubDate>Sun, 31 Jul 2016 08:54:02 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=1139">UnixOutlaw</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=1900</guid>
			<description><![CDATA[OK - so I booted up one of my Pine64+ 2GB boards into Android Lollipop 5.1.1 for LCD touchpanel...<br />
<br />
Wifi works - tick<br />
Bluetooth starts - tick<br />
Ethernet works - tick<br />
LCD Panel+touch works - tick<br />
Battery charges - tick<br />
Battery powers pine - UNTICK!<br />
<br />
What gives?<br />
<br />
I watched its progress charging up an 8000 mAh battery - once charged I pulled the DC in out and it shut off!<br />
<br />
Battery definitely connected to the 3 pin PH connector.  Obviously gets a charge through to the battery - why can't I power my pine with the battery?  What's the point in charging it if it won't power the board?  What am I doing wrong?]]></description>
			<content:encoded><![CDATA[OK - so I booted up one of my Pine64+ 2GB boards into Android Lollipop 5.1.1 for LCD touchpanel...<br />
<br />
Wifi works - tick<br />
Bluetooth starts - tick<br />
Ethernet works - tick<br />
LCD Panel+touch works - tick<br />
Battery charges - tick<br />
Battery powers pine - UNTICK!<br />
<br />
What gives?<br />
<br />
I watched its progress charging up an 8000 mAh battery - once charged I pulled the DC in out and it shut off!<br />
<br />
Battery definitely connected to the 3 pin PH connector.  Obviously gets a charge through to the battery - why can't I power my pine with the battery?  What's the point in charging it if it won't power the board?  What am I doing wrong?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[CR2032 Battery holder - sanity check]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=1824</link>
			<pubDate>Fri, 22 Jul 2016 22:30:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=3489">xalius</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=1824</guid>
			<description><![CDATA[Amongst other things I got today one of the CR2032 battery holders from the Pine shop.<br />
<br />
Someone correct me please if I am wrong - but I think the polarity markings inside seem to be off?<br />
<br />
After looking at how the contacts are wired, I had to place both coin cells with the negative side up into the holder to get a parallel connection (3V at the connector),<br />
 if I put them in as marked, they just seem to short out (measured 1.8V at the terminals....) ?]]></description>
			<content:encoded><![CDATA[Amongst other things I got today one of the CR2032 battery holders from the Pine shop.<br />
<br />
Someone correct me please if I am wrong - but I think the polarity markings inside seem to be off?<br />
<br />
After looking at how the contacts are wired, I had to place both coin cells with the negative side up into the holder to get a parallel connection (3V at the connector),<br />
 if I put them in as marked, they just seem to short out (measured 1.8V at the terminals....) ?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Battery Datasheet]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=1457</link>
			<pubDate>Tue, 21 Jun 2016 01:38:04 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=3489">xalius</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=1457</guid>
			<description><![CDATA[Just a quick question, I was looking over the wiki again, but couldn't find the datasheet for the battery from the Pine Shop. It would be really handy to have while looking for something compatible that I dont need to import from China or elsewhere. Thanks :-)]]></description>
			<content:encoded><![CDATA[Just a quick question, I was looking over the wiki again, but couldn't find the datasheet for the battery from the Pine Shop. It would be really handy to have while looking for something compatible that I dont need to import from China or elsewhere. Thanks :-)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Lithium 'salt and battery]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=1211</link>
			<pubDate>Mon, 30 May 2016 03:32:32 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=1139">UnixOutlaw</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=1211</guid>
			<description><![CDATA[I ordered three of these from e-bay :<br />
<br />
    <span style="font-weight: bold;" class="mycode_b"><a href="http://www.ebay.com.au/itm/111706418228" target="_blank" rel="noopener" class="mycode_url">http://www.ebay.com.au/itm/111706418228</a></span><br />
<br />
I've only got 2 Pine 64 (2GB), but I can always use another one with NextThing CHIP.<br />
<br />
I also ordered 4 of these (thinking it was 1 per package - but turns out I'm getting 40 of them!) :<br />
<br />
    <span style="font-weight: bold;" class="mycode_b"><a href="http://www.ebay.ca/itm/201477249384" target="_blank" rel="noopener" class="mycode_url">http://www.ebay.ca/itm/201477249384</a></span><br />
<br />
I can always rig them up as adapters to convert between 2 pin and 3 pin connectors...]]></description>
			<content:encoded><![CDATA[I ordered three of these from e-bay :<br />
<br />
    <span style="font-weight: bold;" class="mycode_b"><a href="http://www.ebay.com.au/itm/111706418228" target="_blank" rel="noopener" class="mycode_url">http://www.ebay.com.au/itm/111706418228</a></span><br />
<br />
I've only got 2 Pine 64 (2GB), but I can always use another one with NextThing CHIP.<br />
<br />
I also ordered 4 of these (thinking it was 1 per package - but turns out I'm getting 40 of them!) :<br />
<br />
    <span style="font-weight: bold;" class="mycode_b"><a href="http://www.ebay.ca/itm/201477249384" target="_blank" rel="noopener" class="mycode_url">http://www.ebay.ca/itm/201477249384</a></span><br />
<br />
I can always rig them up as adapters to convert between 2 pin and 3 pin connectors...]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Help sourcing LiPo in Canada]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=1179</link>
			<pubDate>Fri, 27 May 2016 04:34:34 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=3104">pinkelephants</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=1179</guid>
			<description><![CDATA[I hope to be receiving my Pine any day now, but I have yet to find a good alternative battery that can be purchased in Canada (the official one can't be shipped here, AFAIK). I'm new to buying batteries and don't want to get the wrong one and have everything blow up, so I'm hoping someone can help point me in the right direction.<br />
<br />
To note, I've also ordered the LCD screen and PlayBox enclosure, with the hope of making a tablet of sorts. Ideal would be a battery that fits into the enclosure, like the 'official' one does. I don't need anything hugely powerful -- even just an hour or two of juice would suit my uses for now.<br />
<br />
I do have a battery pack that I can use in a pinch until I find something better, but I'd prefer something that can be charged whenever the Pine is plugged in, plus fits in the case and doesn't take up a USB port.<br />
<br />
Thanks for any help!]]></description>
			<content:encoded><![CDATA[I hope to be receiving my Pine any day now, but I have yet to find a good alternative battery that can be purchased in Canada (the official one can't be shipped here, AFAIK). I'm new to buying batteries and don't want to get the wrong one and have everything blow up, so I'm hoping someone can help point me in the right direction.<br />
<br />
To note, I've also ordered the LCD screen and PlayBox enclosure, with the hope of making a tablet of sorts. Ideal would be a battery that fits into the enclosure, like the 'official' one does. I don't need anything hugely powerful -- even just an hour or two of juice would suit my uses for now.<br />
<br />
I do have a battery pack that I can use in a pinch until I find something better, but I'd prefer something that can be charged whenever the Pine is plugged in, plus fits in the case and doesn't take up a USB port.<br />
<br />
Thanks for any help!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[RTC Backup Battery - CR]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=326</link>
			<pubDate>Thu, 18 Feb 2016 14:50:59 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=1012">sbentjies</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=326</guid>
			<description><![CDATA[I didn't get a good second look at it. Is there a connector attached to the wires or will I need to attach one? Thanks]]></description>
			<content:encoded><![CDATA[I didn't get a good second look at it. Is there a connector attached to the wires or will I need to attach one? Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Minor note about the RTC battery]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=308</link>
			<pubDate>Wed, 17 Feb 2016 07:31:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=588">MichaelMeissner</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=308</guid>
			<description><![CDATA[I just completed my backerkit survey.  On the picture for the battery for the RTC (real time clock), both the CR and the AAA battery packs just have red/black wires.  I would hope the actual battery pack shipped has the appropriate JST-PH plug to go into the pine64 board (or whatever plug you use on the board).]]></description>
			<content:encoded><![CDATA[I just completed my backerkit survey.  On the picture for the battery for the RTC (real time clock), both the CR and the AAA battery packs just have red/black wires.  I would hope the actual battery pack shipped has the appropriate JST-PH plug to go into the pine64 board (or whatever plug you use on the board).]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Battery + Charging question]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=246</link>
			<pubDate>Wed, 03 Feb 2016 14:26:13 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=762">adk_mechetech</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=246</guid>
			<description><![CDATA[So I love the fact that the PINE64 has native support for LIPO batteries, but I can't seem to fine any specifications for charging.<br />
<br />
I wanted to know what the maximum charge current available is.  It's great to have a 5-10Ah battery, but if you can only charge it at 500mA then it's a bit pointless.  I was hoping for at least a 1A charge but preferably a 2-5A charge.]]></description>
			<content:encoded><![CDATA[So I love the fact that the PINE64 has native support for LIPO batteries, but I can't seem to fine any specifications for charging.<br />
<br />
I wanted to know what the maximum charge current available is.  It's great to have a 5-10Ah battery, but if you can only charge it at 500mA then it's a bit pointless.  I was hoping for at least a 1A charge but preferably a 2-5A charge.]]></content:encoded>
		</item>
	</channel>
</rss>