forked from sfera-labs/pycom-modbus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtcp_client.py
52 lines (39 loc) · 1.49 KB
/
tcp_client.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"""
Example Modbus TCP Client
This example shows how to communicate with a modbus server over TCP.
Written by FACTS Engineering
Copyright (c) 2023 FACTS Engineering, LLC
Licensed under the MIT license.
"""
import time
import board
import busio
import digitalio
import adafruit_connection_manager
from adafruit_wiznet5k.adafruit_wiznet5k import WIZNET5K
import adafruit_wiznet5k.adafruit_wiznet5k_socketpool as socket
from uModBus.tcp import TCPClient
def clear_terminal():
print(chr(27) + "[2J")
cs = digitalio.DigitalInOut(board.D5)
spi_bus = busio.SPI(board.SCK, MOSI=board.MOSI, MISO=board.MISO)
eth = WIZNET5K(spi_bus, cs, is_dhcp=True)
pool = adafruit_connection_manager.get_radio_socketpool(eth)
print(eth.pretty_ip(eth.ip_address))
client_ip = '192.168.1.101'
unit_id = 255
mb_client = TCPClient(pool, client_ip, default_unit_id=unit_id)
counter = 0
while True:
counter += 1 # increment counter for register 4
if counter > 32767:
counter = 0 # reset counter
mb_client.write_single_register(4, counter, unit=unit_id)
current_states = mb_client.read_coils(0, 16, unit=unit_id)
holding_regs = mb_client.read_holding_registers(0, 3) # when unit is not specified, the default_unit_id is used
clear_terminal()
for i in range(len(current_states)):
print(f"Coil #{i} is {current_states[i]}")
for i in range(len(holding_regs)):
print(f"Register #{i} is {holding_regs[i]}")
time.sleep(1)