Update Readme: Add RPI + Python usage instructions

This commit is contained in:
jonny 2025-01-31 10:19:46 +01:00
parent a96344f6b9
commit ee55d4483f

199
README.md
View File

@ -1,4 +1,4 @@
# Raspberry Pi Extension board
# Raspberry Pi Extension Board
A custom PLC-like system based on the Raspberry Pi.
With a custom interface board, a Raspberry Pi is extended with protected I/O, bus systems, analog inputs, and Relay or PWM outputs. All components, including a display, are housed in a custom-designed enclosure.
@ -9,7 +9,7 @@ The project is intended for versatile use in prototyping and project development
---
### Photo of all hardware components
## Photo of All Hardware Components
<p align="center">
<img src="doc/photos/all-components.jpg" alt="All Components (Disassembled)" width="75%"/>
</p>
@ -21,7 +21,7 @@ The project is intended for versatile use in prototyping and project development
# Repository Content
- **KiCad Projects**: 3 KiCad projects with schematics and PCB layouts for the custom PCBs created.
- **Housing**: Custom enclosure design for PCBs and Raspberry Pi created in FreeCAD.
- **Software/Firmware**: Python scripts for operating and testing the PCB features (WIP).
- **Software/Firmware**: Python scripts run on the Raspberry Pi for operating and testing the PCB features and providing examples as base for future projects.
---
@ -42,7 +42,7 @@ Detailed features of each PCB are described in the respective sections below.
# Designed PCBs
## 1. **Raspberry Pi Interface Board**
## 1. Raspberry Pi Interface Board
This board connects to the Raspberry Pi via a 40-pin ribbon cable and provides protected GPIO extensions and versatile input/output features.
### Photo
@ -51,7 +51,7 @@ This board connects to the Raspberry Pi via a 40-pin ribbon cable and provides p
### Features
**Inputs**:
- **8x Digital Inputs**:
- Wide continuous voltage range (-1.7 V to 120 V), idea: compatible with 3 V and 24 V devices.
- Wide voltage range (-1.7 V to 120 V) → compatible with 3 V and 24 V devices.
- TVS diodes for ESD and spike protection.
- Reverse polarity protection.
- Isolated with optocouplers.
@ -74,7 +74,7 @@ This board connects to the Raspberry Pi via a 40-pin ribbon cable and provides p
- 8x digital outputs (via shift register):
- Low-power (30 mA push-pull) and high-power (500 mA open-drain) outputs.
- Buzzer and relays connected to channels 6-8, with enable/disable switches.
- Note: Outputs are **not short-circuit proof**.
- **Note**: Outputs are **not short-circuit proof**.
**General**:
- WAGO spring-loaded terminals for easy wiring.
@ -85,7 +85,7 @@ This board connects to the Raspberry Pi via a 40-pin ribbon cable and provides p
- UART (unprotected).
- I2C (TVS diodes, 2.2 kΩ pull-ups).
- SPI (unprotected).
Note: Either RS485 or UART can be used at the same time (select with jumpers).
- **Note**: RS485 and UART cannot be used simultaneously (select via jumpers).
### Schematic and Layout
<p align="center">
@ -160,70 +160,179 @@ Small PCBs with LEDs, resistors, and mounting holes for housing indicators.
</p>
<br>
---
<br>
# Software/Firmware
Python code for operating the extension PCBs (e.g., GPIO pins, shift registers, ADC, and bus communication). This section is a work in progress (WIP), and example scripts will be added as development continues.
# Raspberry Pi Usage
# ======== WIP ========
# Python scripting
The pin assignment to the actual terminals are defined / mapped in
`rpi-scripts\interface_board_pins.py` so it should be included in any custom script created to easily reference the terminal numbers printed onto the project housing in the code. See examples in `rpi-scripts\examples`
TODO: make those files link to file but with text still the file path
# Usage Raspberry-PI
## Connectivity
The Raspberry Pi can operate **standalone** with a connected keyboard, mouse, and HDMI monitor, or by using the integrated display in the housing.
### Establish LAN Connection (ethernet)
configure in command.txt in boot partition?
### Establish WIFI Connection
However, for **development**, it is recommended to connect it to a network via **WiFi or LAN**, allowing easy remote access from a laptop. A direct **Ethernet connection** between the Raspberry Pi and a laptop is often the simplest method.
### LAN Connection (Ethernet)
- **Connection**: Connect cable directly between raspberry and PC
- **Configure the PC interface**: Set a static ip address e.g. `192.168.1.1/24`
Note: Optionally also enable network sharing to enable the RPI to use the internet connection the PC currently has.
- **Configure the Raspberry Interface**: Set a static ip address e.g. `192.168.1.100/24`
The Raspberry Pi can be configured for **Ethernet access** using different methods:
- **Boot Partition Configuration:** Modify `cmdline.txt` on the SD card.
- **GUI Setup:** Use the built-in network manager if a monitor is connected.
- **Command Line (`nmcli`)**: Configure networking via the terminal.
To check the assigned IP run:
```bash
s nmcli device wifi connect <SSID> password <password>
# replace <SSID> and <password> with actual wifi
ip a
```
### Connect via ssh
```powershell
### WiFi Connection
Probably the **fastest and easiest** way to set up communication between the Raspberry Pi and a PC - while even maintaining internet access - is to **use a mobile phone as a WiFi hotspot**.
Simply **connect both the Raspberry Pi and the laptop** to the same hotspot.
To connect to a WiFi network, use:
```bash
nmcli device wifi connect <SSID> password <password>
```
Replace `<SSID>` and `<password>` with the actual credentials.
The Raspberry Pi will **automatically reconnect** after a reboot.
Once connected, you can check the assigned IP on the Raspberry Pi using:
```
ip a
```
### SSH Access
For remote terminal access, connect via SSH from a laptop:
```bash
ssh pi@192.168.1.100
```
Replace the IP with the actual address of the Raspberry Pi.
### Connect via rdp
Open mstsc from windows start menu, and enter ip, user root and password.
Or use powershell:
### Remote Desktop (RDP)
To control the Raspberry Pis **GUI remotely**, RDP is pre-configured.
#### Connect via Windows Remote Desktop:
- Open **Remote Desktop Connection (mstsc)**.
- Enter the Raspberry Pis IP address.
- **Login:**
- **User:** `root`
- **Password:** (configured during setup)
- **Note:** Logging in as `pi` may result in a black screen.
#### Alternatively, use PowerShell:
```powershell
mstsc /v:192.168.1.100:3389
```
Note: currently only user `root` works (using user pi results in blackscreen)
### Mount filesystem in windows
You can mount /home/pi folder in windows natively using samba
Run in powershell to mount it as network device X (replace ip with the current ip of rpi)
Find out ip with running `ip a` on the raspberry
```powershell
net use X: \\192.168.1.100\pi /user:pi
```
### Mount Raspberry Pi Filesystem in Windows (SAMBA)
For convenient file access and editing (e.g., with **VS Code**), the Raspberry Pis `/home/pi` directory can be **mounted as a network drive** using Samba.
## Scripts
#### Steps:
1. Determine the Raspberry Pis IP address:
```bash
ip a
```
2. Mount the `/home/pi` directory in Windows:
```powershell
net use X: \\192.168.1.100\pi /user:pi
```
Replace `192.168.1.100` with the actual IP address.
### Autostart GUI
**Note:**
Currently, only `/home/pi` is available for mounting. To share additional directories, edit the Samba configuration file:
```bash
git/rpi-interface-board/rpi-scripts/gui% s cp gui-start.service /etc/systemd/system/
# add a new `[share]` section with the desired folder path and permissions.
sudo nano /etc/samba/smb.conf
# then restart samba
sudo systemctl restart smbd
```
# ======== END WIP ========
<br>
---
<br>
# Python Scripting
All **terminal-to-pin assignments** are mapped in [`interface_board_pins.py`](rpi-scripts/interface_board_pins.py), allowing easy reference to terminal numbers labeled on the housing.
Example scripts demonstrating I/O control can be found in [`rpi-scripts/examples`](rpi-scripts/examples).
---
## Scripts & Development
### Running Python Examples
Pre-written **Python scripts** to control I/O terminals are located in:
```
rpi-scripts/examples
```
To run an example, execute:
```bash
cd /home/pi/git/rpi-interface-board/rpi-scripts/examples/
python read_digital_inputs.py
```
### Starting a New Python Project with I/O Access
To create a custom Python project using the **interface board**, follow these steps:
1. **Copy the entire `rpi-scripts/` folder** to your new project directory.
2. **Remove unnecessary files**, keeping at least:
- `rpi-scripts/interface_board_libs/` → contains custom drivers.
- `rpi-scripts/interface_board_pins.py` → maps terminal numbers to GPIO/ADC channels.
3. **Start coding** by modifying an existing example in `examples/`.
---
## GUI Interface
A **Python GUI** is available for **real-time monitoring** and **control** of all I/O terminals for quick testing.
### Run the GUI
```bash
cd rpi-scripts/gui
python main.py
```
### Enable GUI Autostart on Boot
The GUI is configured to start automatically on boot in **fullscreen mode**. To modify this behavior:
#### Enable autostart:
```bash
sudo cp rpi-scripts/gui/gui-start.service /etc/systemd/system/
sudo systemctl enable gui-start.service
```
#### Disable autostart:
```bash
sudo systemctl disable gui-start.service
```
### GUI Screenshots
<p align="center">
<img src="doc/graphics/python-gui-control.png" width="80%" />
<img src="doc/graphics/python-gui-monitor.png" width="80%" />
</p>
<br>
---
<br>
# Housing
Custom-designed enclosure includes:
- Ports for Raspberry Pi.
- Banana sockets for power outputs.
- Exposed screw terminals.
- Openings for buttons and LEDs.
- Mounts for all PCBs and wiring.
- Cutouts for all Ports for Raspberry Pi.
- Mounting screws for all pcbs and Raspberry
- Fan mount + venting slots
- Cutouts for all external pcb terminals
- Cutout + mounting arms (M2.5) for Display
<img src="doc/graphics/3d-model_housing.png" width="80%" alt="3D Model"/>