Andrea Torlai
Created October 17, 2024

Astrial - RS485 and Relay Board

The goal of this tutorial is to show how to control a Relay board using the RS485 interface with Astrial by System Electronics

30
Astrial - RS485 and Relay Board

Things used in this project

Hardware components

Astrial
×1
Waveshare CM4-ETH-RS485-BASE-B
×1
R421B16 relay board
×1
12V power supply
×1
USB-RS485 adapter
×1
LED (generic)
LED (generic)
×8

Story

Read more

Schematics

Schematic with LEDs

Schematic

Code

read_data.py

Python
import serial
import time
import argparse

def main():
    parser = argparse.ArgumentParser(description='Serial port communication.')
    parser.add_argument('--dev', type=str, required=True, help='Port for the serial communication')
    args = parser.parse_args()

    serialPort = serial.Serial(
        port=args.dev, baudrate=9600, bytesize=8, timeout=2, stopbits=serial.STOPBITS_ONE
    )
    serialString = ""  # Used to hold data coming over UART

    while True:
        # Read data out of the buffer until a carriage return / new line is found
        serialString = serialPort.readline()

        # Print the contents of the serial data
        try:
            print(serialString.decode("Ascii"))
        except:
            pass

if __name__ == "__main__":
    main()  

send_data.py

Python
import serial
import argparse
import time

def main():
    parser = argparse.ArgumentParser(description='Serial port communication.')
    parser.add_argument('--dev', type=str, required=True, help='Device path of the serial port')
    args = parser.parse_args()

    serial_port = serial.Serial(port=args.dev, baudrate=9600, bytesize=8, timeout=2, stopbits=serial.STOPBITS_ONE)
    
    while True:
        serial_port.write(b"Hello World \r\n")
        time.sleep(1)
if __name__ == "__main__":
    main()

Credits

Andrea Torlai
11 projects • 4 followers
Contact

Comments

Please log in or sign up to comment.