-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmodbus_device_driver.py
38 lines (27 loc) · 1.26 KB
/
modbus_device_driver.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
#!/usr/bin/env python
from __future__ import print_function
import logging
import rospy
from ros_modbus_device import *
from pymodbus.exceptions import ConnectionException
logger = logging.getLogger(__name__)
ROSLoggingAdapter.attach(__name__)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
ch.setFormatter(formatter)
logger.addHandler(ch)
rospy.init_node('modbus_device_driver', anonymous=True)
modbus_device = ROSModbusSlaveDevice()
logger.info("connecting to: %s:%d", modbus_device.config.config['address'], modbus_device.config.config['port'])
while not rospy.is_shutdown():
while not modbus_device.connect() and not rospy.is_shutdown():
rospy.sleep(1)
logger.info("Retrying connecting to: %s:%d", modbus_device.config.config['address'], modbus_device.config.config['port'])
if not rospy.is_shutdown():
try:
modbus_device.run()
except ConnectionException as err:
logger.error("Lost connection! Error message: {}".format(err))
rospy.sleep(1)
logger.info("Attempting to reestablish connection to: %s:%d", modbus_device.config.config['address'], modbus_device.config.config['port'])