In my use case, I receive a setpoint from an IEC-104 client on IOA 1034484 with type C_SE_NC_1. The requirement is to mirror the received value on another point with the same IOA but type M_ME_TF_1, i.e., to acknowledge correct reception.
However, when I call
command = station.add_point(io_address=1034484, type=c104.Type.C_SE_NC_1)
mirror = station.add_point(io_address=1034484, type=c104.Type.M_ME_TF_1)
mirror is None.
How would it be possible to configure the station for this use case?
In my use case, I receive a setpoint from an IEC-104 client on IOA 1034484 with type
C_SE_NC_1. The requirement is to mirror the received value on another point with the same IOA but typeM_ME_TF_1, i.e., to acknowledge correct reception.However, when I call
mirroris None.How would it be possible to configure the station for this use case?