Skip to main content
Home
for DLMS smart meters
Open source solutions for DLMS smart metering

Main navigation

  • Home
  • Products
  • About us
  • Open Source
  • Community
  • Forum
  • Downloads
User account menu
  • Log in

Breadcrumb

  1. Home
  2. How To Read Specific OBIS Codes In 48 Association Without GetAssociationView() ?

How to Read Specific OBIS Codes in 48 Association without getAssociationView() ?

By Ali_nk , 17 May, 2024
Forums
Gurux.DLMS

Hi,

I want to read only these two OBIS codes in the 48 association:

This is my input:

sampleclient.main([
'main.py',
'-S', self.S,
'-c', '48',
'-a', 'High',
'-P', self.HLS,
'-C', 'AuthenticationEncryption',
'-T', '54333435',
'-A', self.A,
'-B', self.B,
'-D', self.HLSHX,
'-g', '1.0.0.2.0.255:2; 0.0.96.1.0.255:2'
])

Currently, it takes 20 to 24 seconds to execute getAssociationView(). How can I read the required OBIS codes directly without using getAssociationView()?

my code

reader = GXDLMSReader(settings.client, settings.media, settings.trace, settings.invocationCounter)
settings.media.open()
if settings.readObjects:
read = False

try:
reader.initializeConnection()
except Exception as ex:
msgbox.showwarning("Error", str(ex))

if reader:
reader.close()
finally:
pass

if settings.outputFile and os.path.exists(settings.outputFile):
try:
c = GXDLMSObjectCollection.load(settings.outputFile)
settings.client.objects.extend(c)
if settings.client.objects:
read = True
except Exception:
read = False
if not read:
reader.getAssociationView()
for k, v in settings.readObjects:
obj = settings.client.objects.findByLN(ObjectType.NONE, k)
if obj is None:
raise Exception("Unknown logical name:" + k)
if k == "1.0.0.2.0.255" :
val = reader.read(obj, v)
print_to_log("firmware :",val)
if k == "0.0.96.1.0.255":
val = reader.read(obj, v)
print_to_log("Serial No.:",val)
RTC = GXDLMSClock("0.0.1.0.0.255")
rtc_val = reader.read(RTC, 2)
rtc_str = str(rtc_val)

rtc forcing codes

Profile picture for user Kurumi

Kurumi

2 years ago

Hi, You can save the…

Hi,

You can save the association using -o argument, or remove the association reading and add COSEM object manually as you have already done.

RTC = GXDLMSClock("0.0.1.0.0.255")
rtc_val = reader.read(RTC, 2)
rtc_str = str(rtc_val)

Ali_nk

2 years ago

Hi, Thanks for the reply. I…

Hi,

Thanks for the reply. I used the -o argument, and it is working fine.

How can I use COSEM objects to read other OBIS codes like voltage, billing count, and serial number?

Profile picture for user Kurumi

Kurumi

2 years ago

Hi, You need to check the…

Hi,

You need to check the object type and OBIS code e.g. with GXDLMSDirector.
When you know that you can add those objects to the code or add logical name command line arguments.

BR,
Mikko

  • Create new account
  • Reset your password

Hire Us!

Latest Releases

  • Tue, 06/09/2026 - 11:16
    gurux.dlms.java 4.0.95
  • Tue, 06/09/2026 - 10:03
    Gurux.DLMS.Python 1.0.199
  • Mon, 06/08/2026 - 13:39
    gurux.dlms.cpp 9.0.2606.0801
  • Mon, 06/01/2026 - 10:15
    gurux.dlms.cpp 9.0.2606.0101
  • Thu, 05/28/2026 - 16:06
    gurux.dlms.java 4.0.94

New forum topics

  • Error reading L&G Meter
  • Pass a TCP Client to GXNet
  • Australian EDMI Mk10D (Essential Energy area)
  • Strange mix of data notificiation vs get response
  • DLMS Connection
More
RSS feed
Privacy FAQ GXDN Issues Contact
Follow Gurux on Twitter Follow Gurux on Linkedin