-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from u7985/main
docs: add sata-hat-top-board
- Loading branch information
Showing
7 changed files
with
160 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
--- | ||
sidebar_position: 3 | ||
--- | ||
|
||
# SATA HAT top board | ||
|
||
Radxa ROCK Penta SATA HAT 有一个 2x5 的座子,座子的信号如下: | ||
|
||
| Pin | Signal | Pin | Signal | | ||
| --- | -------- | --- | ---------- | | ||
| 1 | I2C_SDA | 2 | VCC3V3_SYS | | ||
| 3 | I2C_SCL | 4 | VCC5V0_SYS | | ||
| 5 | GPIO4_D2 | 6 | GPIO4_C2 | | ||
| 7 | GND | 8 | PWM_33 | | ||
| 9 | GND | 10 | NC | | ||
|
||
这个座子可以用来链接顶板,顶板上有一个 0.91 寸的 OLED 显示屏和一个 4010 风扇,显示屏可以显示 IP 地址和存储信息等,风扇用于散热。 | ||
|
||
![SATA HAT top board](/img/accessories/penta/sata-hat-top-board.webp) | ||
|
||
## 软件支持 | ||
|
||
为了让顶板的 OLED 显示屏和风扇正常工作,我们提供了 `rockpi-penta` 软件包,可以通过下面的命令安装。 | ||
|
||
```shell | ||
sudo apt update | ||
sudo apt install python3-dev | ||
wget https://github.com/radxa/rockpi-penta/releases/download/0.2/rockpi-penta-v0.2.deb | ||
sudo apt install -y ./rockpi-penta-v0.2.deb | ||
``` | ||
|
||
### 软件配置 | ||
|
||
安装软件包后,如果需要修改配置,可以编辑配置文件 `/etc/rockpi-penta.conf`,下面是配置文件的默认值。 | ||
|
||
```ini | ||
[fan] | ||
# When the temperature is above lv0 (35'C), the fan at 25% power, | ||
# and lv1 at 50% power, lv2 at 75% power, and lv3 at 100% power. | ||
# When the temperature is below lv0, the fan is turned off. | ||
# You can change these values if necessary. | ||
lv0 = 35 | ||
lv1 = 40 | ||
lv2 = 45 | ||
lv3 = 50 | ||
|
||
[key] | ||
# You can customize the function of the key, currently available functions are | ||
# slider: oled display next page | ||
# switch: fan turn on/off switch | ||
# reboot, poweroff | ||
# If you have any good suggestions for key functions, | ||
# please add an issue on https://rock.sh/rockpi-sata | ||
click = slider | ||
twice = switch | ||
press = none | ||
|
||
[time] | ||
# twice: maximum time between double clicking (seconds) | ||
# press: long press time (seconds) | ||
twice = 0.7 | ||
press = 1.8 | ||
|
||
[slider] | ||
# Whether the oled auto display next page and the time interval (seconds) | ||
auto = true | ||
time = 10 | ||
|
||
[oled] | ||
# Whether rotate the text of oled 180 degrees, whether use Fahrenheit | ||
rotate = false | ||
f-temp = false | ||
``` | ||
|
||
修改配置后,执行 `sudo systemctl restart rockpi-penta.service` 命令,重启服务使配置生效。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 30 | ||
sidebar_position: 1 | ||
--- | ||
|
||
# Radxa Penta SATA HAT | ||
|
4 changes: 4 additions & 0 deletions
4
...saurus-plugin-content-docs/current/accessories/penta-sata-hat/penta-for-rpi5.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
...us-plugin-content-docs/current/accessories/penta-sata-hat/sata-hat-top-board.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
--- | ||
sidebar_position: 3 | ||
--- | ||
|
||
# SATA HAT top board | ||
|
||
The Radxa ROCK Penta SATA HAT has a 2x5 seat with the following signal: | ||
|
||
| Pin | Signal | Pin | Signal | | ||
| --- | -------- | --- | ---------- | | ||
| 1 | I2C_SDA | 2 | VCC3V3_SYS | | ||
| 3 | I2C_SCL | 4 | VCC5V0_SYS | | ||
| 5 | GPIO4_D2 | 6 | GPIO4_C2 | | ||
| 7 | GND | 8 | PWM_33 | | ||
| 9 | GND | 10 | NC | | ||
|
||
This seat can be used to link to the top plate, which has a 0.91 inch OLED display and a 4010 fan, which can display IP address and storage information, etc., and the fan is used for cooling. | ||
|
||
![SATA HAT top board](/img/accessories/penta/sata-hat-top-board.webp) | ||
|
||
## Software support | ||
|
||
In order to get the top panel OLED display and fan working properly, we provide the `rockpi-penta` package, which can be installed with the following command. | ||
|
||
```shell | ||
sudo apt update | ||
sudo apt install python3-dev | ||
wget https://github.com/radxa/rockpi-penta/releases/download/0.2/rockpi-penta-v0.2.deb | ||
sudo apt install -y ./rockpi-penta-v0.2.deb | ||
``` | ||
|
||
### Software configuration | ||
|
||
After installing the package, if you need to modify the configuration, you can edit the configuration file `/etc/rockpi-penta.conf`, the following is the default value of the configuration file. | ||
|
||
```ini | ||
[fan] | ||
# When the temperature is above lv0 (35'C), the fan at 25% power, | ||
# and lv1 at 50% power, lv2 at 75% power, and lv3 at 100% power. | ||
# When the temperature is below lv0, the fan is turned off. | ||
# You can change these values if necessary. | ||
lv0 = 35 | ||
lv1 = 40 | ||
lv2 = 45 | ||
lv3 = 50 | ||
|
||
[key] | ||
# You can customize the function of the key, currently available functions are | ||
# slider: oled display next page | ||
# switch: fan turn on/off switch | ||
# reboot, poweroff | ||
# If you have any good suggestions for key functions, | ||
# please add an issue on https://rock.sh/rockpi-sata | ||
click = slider | ||
twice = switch | ||
press = none | ||
|
||
[time] | ||
# twice: maximum time between double clicking (seconds) | ||
# press: long press time (seconds) | ||
twice = 0.7 | ||
press = 1.8 | ||
|
||
[slider] | ||
# Whether the oled auto display next page and the time interval (seconds) | ||
auto = true | ||
time = 10 | ||
|
||
[oled] | ||
# Whether rotate the text of oled 180 degrees, whether use Fahrenheit | ||
rotate = false | ||
f-temp = false | ||
``` | ||
|
||
After modifying the configuration, run the `sudo systemctl restart rockpi-penta.service` command to restart the service for the configuration to take effect. |
2 changes: 1 addition & 1 deletion
2
...us-plugin-content-docs/current/accessories/penta-sata-hat/the-penta-sata-hat.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 30 | ||
sidebar_position: 1 | ||
--- | ||
|
||
# Radxa Penta SATA HAT | ||
|
Binary file not shown.