You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
is it possible to add multiple "Remote Nodes" to it´s network, like it´s possible with CANOpen for python?
import canopen
# Start with creating a network representing one CAN bus
network = canopen.Network()
# Add some nodes with corresponding Object Dictionaries
node = canopen.RemoteNode(6, '/path/to/object_dictionary.eds')
network.add_node(node)
# Connect to the CAN bus
network.connect()
# Read a variable using SDO
device_name = node.sdo['Manufacturer device name'].raw
vendor_id = node.sdo[0x1018][1].raw
The text was updated successfully, but these errors were encountered:
Hi,
is it possible to add multiple "Remote Nodes" to it´s network, like it´s possible with CANOpen for python?
The text was updated successfully, but these errors were encountered: