Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Item update issue in Siemens Logo Plugin #151

Open
demacus opened this issue Feb 24, 2015 · 2 comments
Open

Item update issue in Siemens Logo Plugin #151

demacus opened this issue Feb 24, 2015 · 2 comments

Comments

@demacus
Copy link

demacus commented Feb 24, 2015

Items set through read_cycle function in Logo-plugin won't get updated properly and will be reset within next read cycle.

I could fix it by adding a source attribute in the _read_cycle function as follows:

284 if 'old' in v: # Variable wurde schon einmal gelesen
285 if v['old'] != new_value: # Variable hat sich geändert
286 ##logger.debug("LOGO: read_cycle():{0} newV:{1} oldV:{2} item:{3} ".format(k, new_value, v['old'], v['item']))
287 v.update({'value': new_value})
288 v.update({'old': new_value}) # speichere den aktuellen Zustand
--289 item(new_value) # aktualisiere das Item
++289 item(new_value, 'LOGO') # aktualisiere das Item
290 logger.debug('LOGO: updateItem {0}'.format(item))

@ivan73
Copy link

ivan73 commented Mar 2, 2015

Der Fehler mit dem update verstehe ich (noch) nicht. Wenn sich bei mir ein Eingang/Ausgang/Merker/Analogwert ändert, so bekomme ich den Status auch sofort und richtig in der Visu angezeigt.. hmm?

Wozu ist das source attribute denn sinnvoll? item(new_value, 'LOGO')
Gruß Ivan

@demacus
Copy link
Author

demacus commented Mar 3, 2015

Hallo

Es ist folgendermaßen:
Wenn ich über einen Schaltbefehl einen Ausgang in der Logo setze wird der Status zwar erkannt aber im folgenden Zyklus sofort zurückgesetzt. (Im Log erscheint dann kurz hintereinander: Objekt set to true via Logic und Objekt set to false via Logic)
Über die Visu lassen sich die Ausgänge problemlos setzen, dies tritt nur bei einer Änderung durch die Logo-Logik auf (in meinem Fall über Taster).

Nach hinzufügen des Source Attributs ist dieser Effekt verschwunden. Es erscheint nun einmalig "Objekt set to true via LOGO" im Log und der Status bleibt erhalten.

MfG

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants