X728-script

From Geekworm Wiki
Jump to navigation Jump to search

Overview

This is script installation tutorial for X728 shield, it will replace X728 Software installation tutorial, although X728 Software installation tutorial is still available, but we strongly recommend that you use this script tutorial, which simplifies the installation process and reduces dependencies on third-party python libraries.

Now we think you have successfully flashed the OS Image into Micro SD and and power on the device, and you have also completed the operations such as creating new user required in some OS. You need to perform the following operations in Terminal.

[NOTE]:

The script now supports the Raspberry Pi OS BOOKWORM version, do the following to support bookworm

1. First go back to the directory where you originally installed x728-script, you can see the x728-script folder
2. Then run the following command:
cd x728-script
rm x728-softsd.sh x728-v1.x-softsd.sh x728-v2.x-softsd.sh -f 
git pull origin
chmod +x *.sh
sudo cp -f . /x728-v1.x-softsd.sh /usr/local/bin/
sudo cp -f . /x728-v2.x-softsd.sh /usr/local/bin/
sudo reboot

OS that has been tested

  • Raspbian
  • DietPi
  • Manjaro
  • Ubuntu
  • myNode
  • Umbrel
  • Volumio
  • RetroPie
  • Twister

Install

Please follow the steps below:

Enable I2C

Reter to How to enable I2C

NOTE: sample/x728-v2.x-bat.py or sample/x728-v1.x-bat will run with error if you don't enable I2C.

Check & review I2C address:

pi@raspberrypi:~ $ sudo i2cdetect -y 1
     0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f
00:          -- -- -- -- -- -- -- -- -- -- -- -- -- 
10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
30: -- -- -- -- -- -- 36 -- -- -- -- -- -- -- -- -- 
40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
60: -- -- -- -- -- -- -- -- 68 -- -- -- -- -- -- -- 
70: -- -- -- -- -- -- -- --   

Explaination:

#36 - the address of the battery fuel gauging chip
#68 - the address of the RTC chip

Clone the script

git clone https://github.com/geekworm-com/x728-script

cd x728-script
chmod +x *.sh

PS: For some OS such as 'Raspberry Pi OS Lite', the git tool is not installed by default, if you get an error like error: -bash: git: command not found, please run the following command to install the git tool.

sudo apt install -y git

Create the x728-pwr service

x728-pwr service will be responsible for power management and hardware safe shutdown.

sudo cp -f ./x728-pwr.sh                /usr/local/bin/
sudo cp -f x728-pwr.service             /lib/systemd/system
sudo systemctl daemon-reload
sudo systemctl enable x728-pwr
sudo systemctl start x728-pwr

Now, if you press and hold the onboard switch for 3 seconds, then the blue LED will flash slowly and the shutdown is going then all LEDs will be off until the device is completely powered off.

Prepair software shutdown script

Please check the version of X728 shield and select the appropriate file, x728-v2.x-softsd.sh fiel for x728 v2.5/v2.3/v2.2/v2.1 shield. then run the following command:

sudo cp -f ./x728-v2.x-softsd.sh             /usr/local/bin/x728-softsd.sh

OR (Run the following command for x728 v1.2/v1.3 shield)

sudo cp -f ./x728-v1.x-softsd.sh             /usr/local/bin/x728-softsd.sh

Create a alias x728off command to execute the software shutdown

echo "alias x728off='sudo /usr/local/bin/x728-softsd.sh'" >>   ~/.bashrc
source ~/.bashrc

Then you can run x728off to execute software shutdown as follows

x728off

=Uninstall

Run the following command to uninstall all:

./uninstall.sh

Test safe shutdown

Software safe shutdown command:

x728off

DON'T run the 'shutdown' linux command to shut down, otherwise the power of x728 shield will not be shut down.

Hardware safe shutdown operation:

You can verify the safety switch through the onboard switch, press and hold the switch for 3 seconds, then the blue LED will flash slowly and the shutdown is going then all LEDs will be off until the device is completely powered off.

  • press on-board button switch 1-2 seconds to reboot
  • press button switch 3 seconds to safe shutdown,
  • press 7-8 seconds to force shutdown.

Sample Files

The example programs are only suitable for advanced players, and you can construct your own usage scenarios according to the example programs.

Each example program demonstrates a different function:

x728-v2.x-bat.py: Script to read battery power and voltage;

cd ~x728-script
sudo python3 sample/x728-v2.x-bat.py

x728-v2.x-pld.py: Script to AC Power supply loss dection

cd ~x728-script
sudo python3 sample/x728-v2.x-pld.py

x728-v2.x-asd.py: Script to Auto shutdown when the battery voltage is lower than a certain specified value

cd ~x728-script
sudo python3 sample/x728-v2.x-asd.py

PS:

1. All sample python files maybe depends on the third-party python library `Rpi.GPIO`. In the official Raspberry Pi OS and most third-party OS, this library is installed by default. If you run this file and get some errors, try to run the following command to install the Rpi.GPIOy library.

sudo apt-get install -y python3-smbus python3-rpi.gpio

Or you can refer to How to Install RPi.GPIO Python Library

2. The sample file based on the version number is just because different versions of X728 shield use different GPIOs, they are basically the same. You can use a file comparison tool to view it, if you get it wrong, most likely you are using the wrong version of the sample file. You can refer to X728 hardwar to check the PIN occupancy of X728 shield.

3. The sample program is only to demonstrate how to use the advanced functions of the shield, we do not provide the development function of the sample program.

Set and Read the RTC time

Refer to How to enable RTC

How to Use GPIO16 to control battery charging

1. This feature is only newly added from Version 2.5

2. This feature is only suitable for advanced players, if you are not familiar with Linux, we do not recommend you to use this feature. For beginners, it is enough to short the 'CHG Ctrl' so that the X728 v2.5 shield will automatically charge when the power adapter is connected

If you want to control battery charging through GPIO, please refer to the instructions below:

"CHG Ctrl" - Short : battery automatic charging when powe adapter connected
"CHG Ctrl" - Open : GPIO16 output stays high: Charging enabled, GPIO16 output stays low : Charging disabled
# Sample shell command
echo "16" > /sys/class/gpio/export
echo "out" > /sys/class/gpio/gpio16/direction

# Enable charging
echo "1" > /sys/class/gpio/gpio16/value

# Disable charging
echo "0" > /sys/class/gpio/gpio16/value

Support

Email: support@geekworm.com

FAQ

Q: How to login volumio via SSH?

1. Enable SSH:

Visit http://volumio.local/dev/, then click ENABLE SSH button

2. URL connection is IP address, and the default user name is volumio, default password is volumio

Q: How to login to Umbrel via SSH? A: ssh umbrel@umbrel.local (or ssh umbrel@). the default user name is umbrel, default password is moneyprintergobrrr
Q: How to login to myNode via SSH? A: URL connection is IP address, and the default user name is admin, default password is bolt
Q: How to login to DietPi via SSH? A: URL connection is IP address, and the default user name is root, default password is dietpi
Q: Is LibreELEC supported? A: TODO

Other resource

Return to X728 or X728-hardware


Add your comment
Geekworm Wiki welcomes all comments. If you do not want to be anonymous, register or log in. It is free.


Anonymous user #5

3 months ago
Score 0++
The battery indicator lights do not light up. If I remove the batteries, then plug in the AC power, all 4 will light up, then the 100% light will blink a couple of times, then all lights will go out.

Anonymous user #5

3 months ago
Score 0++
Can anybody help?

Walker

3 months ago
Score 0++
Hi, which version of x728 are you using?

Anonymous user #5

3 months ago
Score 0++
Version 2.5

Walker

3 months ago
Score 0++
Hello, you can contact us via our email: support@geekworm.com we will do our best to solve your problem(By the way, provide your order number)

Anonymous user #5

3 months ago
Score 0++
When I get to the part where you are supposed to check and review the i2c address, the x278 doesn't show up. If I skip that step, and try to clone the script github asks for a username and password.

Walker

3 months ago
Score 0++
Hi, please see our FAQ: https://wiki...8-script#FAQ

Anonymous user #4

4 months ago
Score 0++

I'm attempting to configure an X728 v2.5 to automatically charge the battery and start the Raspberry Pi automatically when power is restored. I have shorted both the "Auto ON" and "CHG EN" and then with the unit powered off, I remove the batteries and then replace them. The result is that everything works as expected the first time power is restored, the Pi starts automatically and the battery is charging. On subsequent attempts, there is an immediate flicker on the Pi but it doesn't actually start until I press the blue button switch on the X728.

I also have an older X728 v2.3 that is working as expected, starts the Pi automatically when power is applied and charges the battery automatically. On this one, I have only shorted the "Auto ON".

Is there something else that needs to be done on v2.5 to get the anticipated results?

Anonymous user #4

4 months ago
Score 0++

I was able to program around the firmware issue by removing the short for the "CHG EN" and adding a function to my python script that started charging when capacity dropped below 97% and stopped charging when capacity was at 100% or greater.

Just wondering why I was forced to do that when according to the documentation, I should have been able to do it from the hardware side.

Walker

4 months ago
Score 0++
x728 v2.5 just in x728 v2.3 based on the addition of Adds battery charging control via GPIO16, other features are not changed, if your X728 V2.3, can work properly, hit your expected results, it is reasonable to say that the X728 V2.5 can also meet the requirements!

Anonymous user #4

4 months ago
Score 0++
So what is the expected result on a v2.5 when shorting both "Auto ON" and "CHG EN"? I'm trying to understand the appropriate hardware configuration on a v2.5 to get it to auto start and auto charge without programming. I would agree that it would be reasonable to expect the v2.5 to be able to meet the requirement. Your answer seems to be dodging the actual question.

Walker

4 months ago
Score 0++
Hello, my answer may not be so professional, please understand, if possible, I hope you contact our technical support at : support@geekworm.com

Anonymous user #3

4 months ago
Score 0++
Still no legit firmware? Absolute garbage of a product.

Walker

4 months ago
Score 0++
Hello, have you encountered any unresolved issues?

Anonymous user #2

6 months ago
Score 0++

Software safe shutdown command is not safe! It does look like it only cuts power to the pi without a correct shutdown.

Noticed it only after dataloss...

Harry

6 months ago
Score 0++

Hi,

Refer to X708#Working_principle,

Anonymous user #1

7 months ago
Score 0++
It says it was tested with ubuntu, but it does not work with ubuntu, the system does not have the sys/class/gpio folder in its filesystem.

Walker

6 months ago
Score 0++
Hello, we tested with ubuntu, can you explain your problem in detail via email? , you can contact us via our email: support@geekworm.com we will do our best to solve your problem