We failed to set the rtc clock of meter using Gurux UI, may be due to some limitation of ms in timing of the meter ,
Is there is any Gurux python library is available so that i can try using the script?
Also i want to go the all the configuration of meter using Gurux python library, Can you help for the same.
Hi, I believe that you are…
Hi,
I believe that you are using the clock object to update the clock. Milliseconds are ignored as a default because meters usually do not support it.
You can use a client example to read all values from the meter.
https://github.com/Gurux/Gurux.DLMS.Python/tree/master/Gurux.DLMS.Clien…
BR,
Mikko
Hi, But i heard that…
Hi,
But i heard that scheinder meter support ms to write the clock ? is it right , in gurux we did not see any option to pass this ms, so looking for a script
Hi, The client examples don…
Hi,
The client examples don't use ms, because it is not commonly used. You must modify the source code and set the milliseconds to use them.
BR,
Mikko
Hi, Could you please share…
Hi, Could you please share the code in python with an example that would be great.
Hi, You can do it like this…
Hi,
You can do it like this using GXDLMSReader.py:
clock1 = GXDLMSClock()
#Update the time.
clock1.time = GXDateTime(datetime.datetime.now())
#Write time for the meter.
self.write(clock1, 2):
BR,
Mikko