Closed henkwitte closed 7 years ago
As this is a Jace.... point list comes from a export table. Can you share the table ? Or limit the table to 1 entry so we can narrow the search scope ? We could also use this validation to put our finger on a failing point (if one in particular)
for point in Norwich.points:
print(point)
if the pandas part fails, you can verify that at least points name are ok
for point in Norwich.points:
print(point.properties.name)
Hi Christian,
That works - in the original table there is apparently one point that breaks the loop. Putting one new point in the table, updating the BAC0.connect and then running the
for point in Norwich.points: print(point)
shows:
CalcMonth.testBCvalue : 15.50 noUnits
Thanks, will now start more tests with the beaglebone as well.
Henk
Great ! One more step
Issue with Carel PCO controller also solved:
On the beaglebone with ubuntu and running the BAC0 development branch, following Christian's procudure by defining an object list to reduce the number of points retrieved:
import BAC0 BAC0.version (= 0.99.105) (just to check) bacnet=BAC0.connect(bokeh_server=False) my_ob_list=[('file',1),('analogValue',100062)] fx2=BAC0.device('192.168.25.24',77000,bacnet,object_list=my_ob_list) fx2.points
Shows the actual value of the point: [SET_ACS_TANK : 45.00 noUnits]
Problem was that the Carel device has a great number of points (> 6000!) which seems to cause issues with retrieving the data.
Henk
Carel PCOs are somewhat, exagerating.... :-) Glad to see it fixed the trouble also !
Hi Christian,
After your suggestion to wait for some time before issuing the ~.points command, I tried waiting for 15 minutes after the BAC0.device() command, but with the same result:
PS, this is on the master branch