I'm trying to learn and program using pyModbus. I have an example program which is running fine. It has this code to import the ModbusClient
from pyModbusTCP.client import ModbusClient
which works ok.
Now I'm trying to run and understand one the pyModbus website examples which has this code:
from pymodbus.constants import Endian
from pymodbus.client.sync import ModbusTcpClient
from pymodbus.payload import BinaryPayloadDecoder
This one throws an error on the first line
from pymodbus.constants import Endian ImportError: No module name pymodbus.constants
This is probably a naive user problem, as my experience with Python objects is weak. But can you help?...RDK