-
Notifications
You must be signed in to change notification settings - Fork 4
/
12265_Buderus-Heizkreis.py
1051 lines (904 loc) · 40.2 KB
/
12265_Buderus-Heizkreis.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*# -*- coding: iso8859-1 -*-
## -----------------------------------------------------
## Logik-Generator V1.5
## -----------------------------------------------------
## Copyright © 2012, knx-user-forum e.V, All rights reserved.
##
## This program is free software; you can redistribute it and/or modify it under the terms
## of the GNU General Public License as published by the Free Software Foundation; either
## version 3 of the License, or (at your option) any later version.
##
## This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
## without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
## See the GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License along with this program;
## if not, see <http://www.gnu.de/documents/gpl-3.0.de.html>.
### USAGE: python.exe LogikGenerator.py [--debug --en1=34 --en2="TEST"]
import sys
import codecs
import os
import base64
import marshal
import re
try:
from hashlib import md5
except ImportError:
import md5 as md5old
md5 = lambda x='': md5old.md5(x)
import inspect
import time
import socket
import tempfile
import zlib
import zipfile
##############
### Config ###
##############
## Name der Logik
LOGIKNAME="Buderus-Heizkreis"
## Logik ID
LOGIKID="12265"
## Ordner im GLE
LOGIKCAT="Buderus"
## Beschreibung
LOGIKDESC="""
Dieser Baustein wertet alle Daten für den Datentyp Heizkeis, die vom Buderus Baustein 12264 kommen, aus und gibt
die Zustände auf die entsprechenden Ausgänge aus. Da es mehrere Heizkreise gibt, muß neben dem Regelgerät auch
die Nummer des Heizkreises angegeben werden. Dann filtert der Baustein genau auf diese Werte und gibt sie aus.
<div class="acht">
Wichtig: Eingang 1 und Ausgang 1 dürfen NIE direkt mit dem Buderus Baustein verbunden werden. Bitte immer die
Verbindung indirekt über ein iKO herstellen !!!!
</div>
Auf Eingang 1 werden die Daten vom Buderus Baustein empfangen. Auf dem Eingang 2 stellt man die Adresse
des Regelgerätes ein. Auf dem Eingang 3 die Nummer des Heizkreises.
<div class="hinw">
Hier ein Tip: Man kann im SystemLog des Buderus Bausteines sehen, an welchen Regelgeräten welche DatenTypen
erkannt wurden. Hier ist der DatenTyp Solar relevant. Ist dieser am Regelgerät 2 erkannt worden, ist hier
eine 2 einzugeben. Auch ist hier zu sehen, welcher Heizkreis vorhanden ist.
</div>
Damit werden nunmehr aus dem gesamten Datenstrom des ECOCAN Bus nur noch genau diese Daten gefilter und auf
den Ausgängen ausgegeben.
<div class="hinw">
Allgemeines: Ein Istwert von 110 °C beschreibt für den betroffenen Fühler einen Fühler defekt. Es kann auch sein,
das hier einfach kein Fühler angeschlossen wurde. Messwerte in diesem Bereich hören bei 109 auf und gehen bei 111 weiter.
</div>
Für die eigentliche Kommunikation sind zwingend folgende Beschreibungen von Buderus zu beachten:
7747004149 – 01/2009 DE - Technische Information - Monitordaten - System 4000
7747004150 – 05/2009 DE - Technische Information - Einstellbare Parameter - Logamatic 4000
Die weiteren Eingänge 4-11 sind zum Verändern von Parametern der Anlage.
<div class="acht">
Diese Eingänge sind jedes Mal ein physikalisches Schreiben auf den Flashspeicher.
Dieser ist auf 1.000.000 mal Schreiben pro Wert begrenzt. Es wird also sehr davon abgeraten,
dies aus einer Logik zu tun. Am besten wird hier nie geschrieben und man setzt im Buderus
Baustein die Konfiguration auf ReadOnly. Dann werden dort alle Schreib-Kommandos zentral verworfen.
Fast alle Schreib Kommandos wirken übrigens auf Service Parameter, die normalerweise NUR der Heizungsfachman verändert!
</div>
"""
VERSION="V0.20"
## Bedingung wann die kompilierte Zeile ausgeführt werden soll
BEDINGUNG="EI"
## Formel die in den Zeitspeicher geschrieben werden soll
ZEITFORMEL=""
## Nummer des zu verwenden Zeitspeichers
ZEITSPEICHER="0"
## AUF True setzen um Binären Code zu erstellen
doByteCode=False
#doByteCode=True
## Base64Code über SN[x] cachen
doCache=False
## Doku erstellen Ja/Nein
doDoku=True
debug=False
livedebug=False
showList=False
#############################
########## Logik ############
#############################
LOGIK = '''# -*- coding: iso8859-1 -*-
## -----------------------------------------------------
## '''+ LOGIKNAME +''' ### '''+VERSION+'''
##
## erstellt am: '''+time.strftime("%Y-%m-%d %H:%M")+'''
## -----------------------------------------------------
## Copyright © '''+ time.strftime("%Y") + ''', knx-user-forum e.V, All rights reserved.
##
## This program is free software; you can redistribute it and/or modify it under the terms
## of the GNU General Public License as published by the Free Software Foundation; either
## version 3 of the License, or (at your option) any later version.
##
## This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
## without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
## See the GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License along with this program;
## if not, see <http://www.gnu.de/documents/gpl-3.0.de.html>.
## -- ''' +re.sub("\n","\n## -- ",LOGIKDESC)+ '''
#5000|"Text"|Remanent(1/0)|Anz.Eingänge|.n.|Anzahl Ausgänge|.n.|.n.
#5001|Anzahl Eingänge|Ausgänge|Offset|Speicher|Berechnung bei Start
#5002|Index Eingang|Default Wert|0=numerisch 1=alphanummerisch
#5003|Speicher|Initwert|Remanent
#5004|ausgang|Initwert|runden binär (0/1)|typ (1-send/2-sbc)|0=numerisch 1=alphanummerisch
#5012|abbruch bei bed. (0/1)|bedingung|formel|zeit|pin-ausgang|pin-offset|pin-speicher|pin-neg.ausgang
5000|"'''+LOGIKCAT+'''\\'''+LOGIKNAME+'''"|0|11|"E1 Payload IN"|"E2 Regelgerät Adr."|"E3 Heizkreis"|"E4 Umschaltschwelle"|"E5 Nachtraumsolltemperatur"|"E6 Tagsolltemperatur"|"E7 Betriebsmode"|"E8 Absenkart Ferien"|"E9 Umschalttemperatur Aussen"|"E10 Auslegungstemperatur"|"E11 Heizsystem"|34|"A1 Payload OUT"|"A2 SystemLog"|"A3 Ausschaltoptimierung Status"|"A4 Einschaltoptimierung Status"|"A5 Automatik"|"A6 Warmwasservorrang"|"A7 Estrichtrocknung"|"A8 Ferien"|"A9 Frostschutz"|"A10 Manuell"|"A11 Sommer"|"A12 Tag"|"A13 keine Kommunikation mit FB"|"A14 FB fehlerhaft"|"A15 Fehler Vorlauffühler"|"A16 maximaler Vorlauf"|"A17 externer Störeingang"|"A18 Party / Pause"|"A19 Vorlaufsolltemperatur"|"A20 Vorlaufistwert"|"A21 Raumsollwert"|"A22 Raumistwert"|"A23 Einschaltoptimierung"|"A24 Ausschaltoptimierung"|"A25 Pumpe"|"A26 Stellglied"|"A27 HK-Eingang WF2"|"A28 HK-Eingang WF3"|"A29 HK-Schalter 0"|"A30 Schalter Hand"|"A31 Schalter AUTO"|"A32 Heizkennlinie + 10"|"A33 Heizkennlinie 0"|"A34 Heizkennlinie - 10"|"'''+VERSION+'''"
5001|11|34|0|1|1
# EN[x]
5002|1|""|1 #* Payload IN
5002|2|1|0 #* Regelgerät Adresse
5002|3|1|0 #* Heizkreis Nr
5002|4|17|0 #* Sommer/Winter Umschaltschwelle 1° genau Stellbereich: 9 - 31 °C
5002|5|34|0 #* Nachtraumsolltemperatur 0.5° genau Stellbereich: 2 - 30 °C
5002|6|42|0 #* Tagsolltemperatur 0.5° genau Stellbereich: 10 - 30 °C
5002|7|2|0 #* Betriebsmode 0 manuell Nacht / 1 manuell Tag / 2 Automatik
5002|8|2|0 #* Absenkart Ferien 0 Abschalt (Frostschutz aktiv) / 1 Reduziert / 2 Raumhalt / 4 Außenhalt
5002|9|5|0 #* Umschalttemperatur für Absenkart "Außenhalt" bei Ferienbetrieb 1° genau Stellbereich -20 bis 10 °C
5002|10|75|0 #* Auslegungstemperatur Heizkreis 1° genau Stellbereich 30-90 °C
5002|11|1|0 #* Heizsystem 0 kein Heizsystem / 1 Heizkörper / 2 Konvektor / 3 Fussboden / 4 Fusspunkt / 5 konstant / 6 Raumregler / 7 EIB
# Speicher
5003|1||0 #* logic
# Ausgänge
5004|1|""|0|1|1 #* Payload OUT
5004|2|""|0|1|1 #* SystemLog
5004|3|0|1|1|0 #* Ausschaltoptimierung Status
5004|4|0|1|1|0 #* Einschaltoptimierung Status
5004|5|0|1|1|0 #* Automatik
5004|6|0|1|1|0 #* Warmwasservorrang
5004|7|0|1|1|0 #* Estrichtrocknung
5004|8|0|1|1|0 #* Ferien
5004|9|0|1|1|0 #* Frostschutz
5004|10|0|1|1|0 #* Manuell
5004|11|0|1|1|0 #* Sommer
5004|12|0|1|1|0 #* Tag
5004|13|0|1|1|0 #* keine Kommunikation mit FB
5004|14|0|1|1|0 #* FB fehlerhaft
5004|15|0|1|1|0 #* Fehler Vorlauffühler
5004|16|0|1|1|0 #* maximaler Vorlauf
5004|17|0|1|1|0 #* externer Störeingang
5004|18|0|1|1|0 #* Party / Pause
5004|19|0|0|1|0 #* Vorlaufsolltemperatur 1 °C
5004|20|0|0|1|0 #* Vorlaufistwert 1 °C
5004|21|0|0|1|0 #* Raumsollwert 0,5 °C
5004|22|0|0|1|0 #* Raumistwert 0,5 °C
5004|23|0|0|1|0 #* Einschaltoptimierung 1 min
5004|24|0|0|1|0 #* Ausschaltoptimierung 1 min
5004|25|0|0|1|0 #* Pumpe 1%
5004|26|0|0|1|0 #* Stellglied 1% * (Puls-Pausen Ansteuerung)
5004|27|0|1|1|0 #* HK-Eingang WF2
5004|28|0|1|1|0 #* HK-Eingang WF3
5004|29|0|1|1|0 #* HK-Schalter 0
5004|30|0|1|1|0 #* HK-Schalter Hand
5004|31|0|1|1|0 #* HK-Schalter AUT
5004|32|0|0|1|0 #* Heizkennlinie + 10 °C 1 °C *
5004|33|0|0|1|0 #* Heizkennlinie 0 °C 1 °C *
5004|34|0|0|1|0 #* Heizkennlinie - 10 °C 1 °C *
#################################################
'''
#####################
#### Python Code ####
#####################
code=[]
code.append([3,"EI",r"""
if EI == 1:
class buderus_heizkreis(object):
def __init__(self,localvars):
import re
self.logik = localvars["pItem"]
self.MC = self.logik.MC
EN = localvars['EN']
self.localvars = localvars
self.current_status = [ ]
self.status_length = 18
## 2.3.1 Monitorwerte für Heizkreise
## Die Monitorwerte für einen Heizkreis setzen sich aus zur Zeit insgesamt 18 Werte zusammen
## und gehören zu einem der nachfolgenden Typen:
## (0x80, 0x81, 0x82, 0x83, 0x8A, 0x8B, 0x8C, 0x8D; 0x8E)
## Achtung:
## Bei dem Regelgerät Logamatic 4211 (4221) werden die Monitorwerte für den
## Heizkreis 0 unter der Kennung des Heizkreises 5 (0x8A) gesendet.
self.device_types = {
"XX" : "kein Heizkreis",
"80" : "Heizkreis 1",
"81" : "Heizkreis 2",
"82" : "Heizkreis 3",
"83" : "Heizkreis 4",
"8A" : "Heizkreis 5",
"8B" : "Heizkreis 6",
"8C" : "Heizkreis 7",
"8D" : "Heizkreis 8",
"8E" : "Heizkreis 9",
}
self.recv_selector = ["8A","80","81","82","83","8A","8B","8C","8D","8E"] ## Heizkreis 0 bei 4221 ist Heizkreis 5
self.send_selector = ["16","07","08","09","0A","16","18","1A","1C","1E"] ## Heizkreis 0 bei 4221 ist 5 ##FIXME: Heizkreis 9 1E??? DOKU ??
if EN[3] < 0 or EN[3] > 9:
self.debug("Ungültige Heizkreisnummer %d" % EN[3])
_id = "XX"
self.send_prefix = None
else:
_id = self.recv_selector[ int(EN[3]) ]
self.send_prefix = "B0%.2x%s" % (int(EN[2]),self.send_selector [ int(EN[3]) ])
self.bus_id = "%.2X" % int(EN[2])
self.id = self.device_types.get(_id)
self.payload_regex = re.compile( "(?P<mode>AB|A7)%s%s(?P<offset>[0-9A-F]{2})(?P<data>(?:[0-9A-F]{2})+)" % ( self.bus_id ,_id) )
## Offset Name Auflösung
## 0 Betriebswerte 1
## 1. Bit = Ausschaltoptimierung ## Ausgang 3
## 2. Bit = Einschaltoptimierung ## Ausgang 4
## 3. Bit = Automatik ## Ausgang 5
## 4. Bit = Warmwasservorrang ## Ausgang 6
## 5. Bit = Estrichtrocknung ## Ausgang 7
## 6. Bit = Ferien ## Ausgang 8
## 7. Bit = Frostschutz ## Ausgang 9
## 8. Bit = Manuell ## Ausgang 10
## 1 Betriebswerte 2
## 1. Bit = Sommer ## Ausgang 11
## 2. Bit = Tag ## Ausgang 12
## 3. Bit = keine Kommunikation mit FB ## Ausgang 13
## 4. Bit = FB fehlerhaft ## Ausgang 14
## 5. Bit = Fehler Vorlauffühler ## Ausgang 15
## 6. Bit = maximaler Vorlauf ## Ausgang 16
## 7. Bit = externer Störeingang ## Ausgang 17
## 8. Bit = Party / Pause ## Ausgang 18
## 2 Vorlaufsolltemperatur 1 °C ## Ausgang 19
## 3 Vorlaufistwert 1 °C ## Ausgang 20
## 4 Raumsollwert 0,5 °C ## Ausgang 21
## 5 Raumistwert 0,5 °C ## Ausgang 22
## 6 Einschaltoptimierung 1 min ## Ausgang 23
## 7 Ausschaltoptimierung 1 min ## Ausgang 24
## 8 Pumpe 1% ## Ausgang 25
## 9 Stellglied 1% * (Puls-Pausen Ansteuerung) ## Ausgang 26
## 10 HK- Eingang
## 1. Bit = Eingang WF2 ## Ausgang 27
## 2. Bit = Eingang WF3 ## Ausgang 28
## 3. Bit = frei
## 4. Bit = frei
## 5. Bit = frei
## 6. Bit = Schalter 0 ## Ausgang 29
## 7. Bit = Schalter Hand ## Ausgang 30
## 8. Bit = Schalter AUT ## Ausgang 31
## 11 FREI *
## 12 Heizkennlinie + 10 °C 1 °C * ## Ausgang 32
## 13 Heizkennlinie 0 °C 1 °C * ## Ausgang 33
## 14 Heizkennlinie - 10 °C 1 °C * ## Ausgang 34
## 15 FREI *
## 16 FREI *
## 17 FREI
##
## Die mit * gekennzeichneten Werte können nur im "Direkt-Modus" empfangen werden.
self.output_functions = [
(self.to_bits,[3,4,5,6,7,8,9,10]),
(self.to_bits,[11,12,13,14,15,16,17,18]),
(lambda x: [x],[19]),
(lambda x: [x],[20]),
(lambda x: [float(x)/2],[21]),
(lambda x: [float(x)/2],[22]),
(lambda x: [x],[23]),
(lambda x: [x],[24]),
(lambda x: [x],[25]),
(lambda x: [x],[26]),
(self.to_bits,[27,28,0,0,0,29,30,31]),
(lambda x: [x],[0]),
(lambda x: [x],[32]),
(lambda x: [x],[33]),
(lambda x: [x],[34]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
(lambda x: [x],[0]),
]
self.get_monitor_data()
def get_monitor_data(self):
self.send_to_output(1,"A2%s" % self.bus_id)
def debug(self,msg):
#self.log(msg,severity='debug')
#print "DEBUG-12265: %r" % (msg,)
pass
def send_to_output(self,out,msg,sbc=False):
if sbc and msg == self.localvars["AN"][out] and not self.localvars["EI"] == 1:
return
self.localvars["AN"][out] = msg
self.localvars["AC"][out] = 1
def log(self,msg,severity='info'):
import time
try:
from hashlib import md5
except ImportError:
import md5 as md5old
md5 = lambda x,md5old=md5old: md5old.md5(x)
_msg_uid = md5( "%s%s" % ( self.id, time.time() ) ).hexdigest()
_msg = '<log><id>%s</id><facility>buderus</facility><severity>%s</severity><message>%s</message></log>' % (_msg_uid,severity,msg)
self.send_to_output( 2, _msg )
def parse(self,offset, data):
offset = int(offset,16)
#if offset > len(self.current_status):
# self.debug("Daten offset größer als vorhandene Daten")
# return
_len = len(data)
#self.current_status = self.current_status[:offset] + [ _x for _x in data ] + self.current_status[offset + _len:]
for _x in xrange(_len):
_offset = offset + _x
_func, _out = self.output_functions[_offset]
_ret = _func( ord(data[_x]) )
for _xx in xrange(len(_ret)):
self.send_to_output(_out[_xx] , _ret[_xx], sbc=True)
#self.debug("Zustand: %r" % (self.current_status,) )
def to_bits(self,byte):
return [(byte >> i) & 1 for i in xrange(8)]
def incomming(self,msg, localvars):
import binascii
self.localvars = localvars
self.debug("incomming message %r" % msg)
msg = msg.replace(' ','')
_data = self.payload_regex.search(msg)
if _data:
self.parse( _data.group("offset"), binascii.unhexlify(_data.group("data")) )
def set_value(self, val, offset, byte,localvars, min=-99999, max=99999, resolution=1):
self.localvars = localvars
if val < min or val > max:
self.log("ungültiger Wert %r (%s-%s)" % (val,min,max) )
_val = val * resolution
if _val < 0:
(_val * -1) + 128
_6bytes = [ "65","65","65","65","65","65" ]
_6bytes[byte - 1] = "%.2x" % round(_val)
self.send_to_output(1,"%s%s%s" % (self.send_prefix, offset.upper(), "".join(_6bytes).upper() ) )
"""])
debugcode = """
"""
postlogik=[0,"",r"""
5012|0|"EI"|"buderus_heizkreis(locals())"|""|0|0|1|0
5012|0|"EC[1]"|"SN[1].incomming(EN[1],locals())"|""|0|0|0|0
#* Sommer/Winter Umschaltschwelle 1° genau Stellbereich: 9 - 31 °C
5012|0|"EC[4]"|"SN[1].set_value(EN[4], offset='00', byte=2, min=9, max=31, resolution=1, localvars=locals())"|""|0|0|0|0
#* Nachtraumsolltemperatur 0.5° genau Stellbereich: 2 - 30 °C
5012|0|"EC[5]"|"SN[1].set_value(EN[5], offset='00', byte=3, min=2, max=30, resolution=0.5, localvars=locals())"|""|0|0|0|0
#* Tagsolltemperatur 0.5° genau Stellbereich: 10 - 30 °C
5012|0|"EC[6]"|"SN[1].set_value(EN[6], offset='00', byte=4, min=10, max=30, resolution=0.5, localvars=locals())"|""|0|0|0|0
#* Betriebsmode 0 manuell Nacht / 1 manuell Tag / 2 Automatik
5012|0|"EC[7]"|"SN[1].set_value(EN[7], offset='00', byte=5, min=0, max=2, resolution=1, localvars=locals())"|""|0|0|0|0
#* Absenkart Ferien 0 Abschalt (Frostschutz aktiv) / 1 Reduziert / 2 Raumhalt / 4 Außenhalt
5012|0|"EC[8]"|"SN[1].set_value(EN[8], offset='3F', byte=1, min=0, max=4, resolution=1, localvars=locals())"|""|0|0|0|0
#* Umschalttemperatur für Absenkart "Außenhalt" bei Ferienbetrieb 1° genau Stellbereich -20 bis 10 °C
5012|0|"EC[9]"|"SN[1].set_value(EN[9], offset='3F', byte=2, min=-20, max=10, resolution=1, localvars=locals())"|""|0|0|0|0
#* Auslegungstemperatur Heizkreis 1° genau Stellbereich 30-90 °C
5012|0|"EC[10]"|"SN[1].set_value(EN[10], offset='3F', byte=5, min=30, max=90, resolution=1, localvars=locals())"|""|0|0|0|0
#* Heizsystem 0 kein Heizsystem / 1 Heizkörper / 2 Konvektor / 3 Fussboden / 4 Fusspunkt / 5 konstant / 6 Raumregler / 7 EIB
5012|0|"EC[11]"|"SN[1].set_value(EN[11], offset='38', byte=2, min=0, max=7, resolution=1, localvars=locals())"|""|0|0|0|0
"""]
####################################################################################################################################################
###################################################
############## Interne Funktionen #################
###################################################
LGVersion="1.5"
livehost=""
liveport=0
doSend=False
noexec=False
nosource=False
doZip=False
for option in sys.argv:
if option.find("--new")==0:
try:
LOGIKID=int(option.split("=")[1].split(":")[0])
LOGIKNAME=option.split("=")[1].split(":")[1]
try:
LOGIKCAT=option.split("=")[1].split(":")[2]
except:
pass
except:
print "--new=id:name[:cat]"
raise
sys.exit(1)
if LOGIKID >99999 or LOGIKID == 0:
print "invalid Logik-ID"
sys.exit(1)
if LOGIKID <10000:
LOGIKID+=10000
LOGIKID="%05d" % LOGIKID
f=open(inspect.currentframe().f_code.co_filename,'r')
data=""
while True:
line = f.readline()
if line.find("LOGIKID=") == 0:
line = "LOGIKID=\""+LOGIKID+"\"\n"
if line.find("LOGIKNAME=") == 0:
line = "LOGIKNAME=\""+LOGIKNAME+"\"\n"
if line.find("LOGIKCAT=") == 0:
line = "LOGIKCAT=\""+LOGIKCAT+"\"\n"
data += line
if not line:
break
f.close()
open(str(LOGIKID)+"_"+LOGIKNAME+".py",'w').write(data)
sys.exit(0)
if option=="--list":
showList=True
if option=="--debug":
debug=True
if option=="--noexec":
noexec=True
if option=="--nosource":
nosource=True
if option=="--zip":
doZip=True
if option=="--nocache":
doCache=False
if option.find("--live")==0:
livedebug=True
debug=True
doByteCode=False
doCache=True
try:
livehost=option.split("=")[1].split(":")[0]
liveport=int(option.split("=")[1].split(":")[1])
except:
print "--live=host:port"
if option.find("--send")==0:
doSend=True
try:
livehost=option.split("=")[1].split(":")[0]
liveport=int(option.split("=")[1].split(":")[1])
except:
print "--send=host:port"
print "HOST: "+livehost+" Port:" +str(liveport)
### DEBUG ####
EI=True
EA=[]
EC=[]
EN=[]
SA=[]
SC=[]
SN=[]
AA=[]
AC=[]
AN=[]
OC=[]
ON=[]
if debug or doSend:
EA.append(0)
EC.append(False)
EN.append(0)
AA.append(0)
AC.append(False)
AN.append(0)
SA.append(0)
SC.append(False)
SN.append(0)
ON.append(0)
OC.append(False)
## Initialisieren ##
for logikLine in LOGIK.split("\n"):
if logikLine.find("5001") == 0:
for i in (range(0,int(logikLine.split("|")[3]))):
ON.append(0)
OC.append(False)
if logikLine.find("5002") == 0:
EN.append(logikLine.split("|")[2].replace('\x22',''))
EA.append(logikLine.split("|")[2])
EC.append(False)
if logikLine.find("5003") == 0:
if logikLine.split("|")[3][0] == "1":
SN.append(re.sub('"','',logikLine.split("|")[2]))
else:
try:
SN.append(int(logikLine.split("|")[2]))
except:
pass
SN.append(logikLine.split("|")[2])
SA.append(logikLine.split("|")[2])
SC.append(False)
if logikLine.find("5004") == 0:
AN.append(logikLine.split("|")[2])
AA.append(logikLine.split("|")[2])
AC.append(False)
def bool2Name(b):
if int(b)==1:
return "Ja"
else:
return "Nein"
def sbc2Name(b):
if int(b)==1:
return "Send"
else:
return "Send By Change"
def addInputDoku(num,init,desc):
return '<tr><td class="log_e1">Eingang '+str(num)+'</td><td class="log_e2">'+str(init)+'</td><td class="log_e3">'+str(desc)+'</td></tr>\n'
def addOutputDoku(num,sbc,init,desc):
return '<tr><td class="log_a1">Ausgang '+str(num)+' ('+sbc2Name(sbc)+')</td><td class="log_a2">'+str(init)+'</td><td class="log_a3">'+str(desc)+'</td></tr>\n'
LOGIKINHTM=""
LOGIKOUTHTM=""
i=0
LEXPDEFINELINE=LHSDEFINELINE=LINDEFINELINE=LSPDEFINELINE=LOUTDEFINELINE=0
for logikLine in LOGIK.split("\n"):
if logikLine.find("5000") == 0:
LEXPDEFINELINE=i
LOGIKREMANT=bool2Name(logikLine.split("|")[2])
LOGIKDEF=logikLine
if logikLine.find("5001") == 0:
LHSDEFINELINE=i
ANZIN=int(logikLine.split("|")[1])
ANZOUT=int(logikLine.split("|")[2])
ANZSP=int(logikLine.split("|")[4])
CALCSTARTBOOL=logikLine.split("|")[5]
CALCSTART=bool2Name(CALCSTARTBOOL)
if logikLine.find("5002") == 0:
LINDEFINELINE=i
desc=re.sub('"','',LOGIKDEF.split("|")[3+int(logikLine.split("|")[1])])
if logikLine.find("#*") >0:
desc=logikLine.split("#*")[1]
LOGIKINHTM+=addInputDoku(logikLine.split("|")[1],logikLine.split("|")[2],desc)
if logikLine.find("5003") == 0 or logikLine.find("# Speicher") == 0:
LSPDEFINELINE=i
if logikLine.find("5004") == 0:
LOUTDEFINELINE=i
desc=re.sub('"','',LOGIKDEF.split("|")[(4+ANZIN+int(logikLine.split("|")[1]))])
if logikLine.find("#*") >0:
desc=logikLine.split("#*")[1]
LOGIKOUTHTM+=addOutputDoku(logikLine.split("|")[1],logikLine.split("|")[4],logikLine.split("|")[2],desc)
i=i+1
if livedebug:
EC.append(0)
EN.append("")
sendVars=""
for option in sys.argv:
if option.find("--sa") == 0:
SA[int(option[4:option.find("=")])]=option.split("=")[1]
sendVars+="SA["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
if option.find("--sn") == 0:
SN[int(option[4:option.find("=")])]=option.split("=")[1]
SC[int(option[4:option.find("=")])]=True
sendVars+="SN["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
sendVars+="SC["+str(int(option[4:option.find("=")]))+"]=1\n"
if option.find("--aa") == 0:
AA[int(option[4:option.find("=")])]=option.split("=")[1]
sendVars+="AA["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
if option.find("--an") == 0:
AN[int(option[4:option.find("=")])]=option.split("=")[1]
AC[int(option[4:option.find("=")])]=True
sendVars+="AN["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1:]+"\n"
sendVars+="AC["+str(int(option[4:option.find("=")]))+"]=1\n"
if option.find("--ea") == 0:
EA[int(option[4:option.find("=")])]=option.split("=")[1]
sendVars+="EA["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1:]+"\n"
if option.find("--en") == 0:
EN[int(option[4:option.find("=")])]="".join(option.split("=",1)[1])
EC[int(option[4:option.find("=")])]=True
sendVars+="EN["+str(int(option[4:option.find("=")]))+"]="+"".join(option.split("=")[1:])+"\n"
sendVars+="EC["+str(int(option[4:option.find("=")]))+"]=1\n"
if option.find("--ec") == 0:
# EC[int(option[4:option.find("=")])]=int(option.split("=")[1])
sendVars+="EC["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
print sendVars
if option.find("--sc") == 0:
# EC[int(option[4:option.find("=")])]=int(option.split("=")[1])
sendVars+="SC["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
print sendVars
if option.find("--on") == 0:
ON[int(option[4:option.find("=")])]=option.split("=")[1]
sendVars+="ON["+str(int(option[4:option.find("=")]))+"]="+option.split("=")[1]+"\n"
if option.find("--oc") == 0:
OC[int(option[4:option.find("=")])]=True
sendVars+="OC["+str(int(option[4:option.find("=")]))+"]=1\n"
if option.find("--ei") == 0:
EI=(int(option.split("=")[1])==1)
sendVars+="EI=1\n"
if option.find("--run") == 0:
sendVars+="eval(SN["+str(ANZSP+1)+"])\n"
def symbolize(LOGIK,code):
symbols = {}
for i in re.findall(r"(?m)^500([234])[|]([0-9]{1,}).*[@][@](.*)\s", LOGIK):
varName=((i[0]=='2') and 'E') or ((i[0]=='3') and 'S') or ((i[0]=='4') and 'A')
isunique=True
try:
type(symbols[i[2]])
sym=i[2]
isunique=False
except KeyError:
pass
## überprüft auch die alternativen Varianten
if re.match("[ACN]",i[2][-1:]):
try:
type(symbols[i[2][:-1]])
sym=i[2][:-1]
isunique=False
except KeyError:
pass
if isunique:
symbols[i[2]]=[varName,"["+i[1]+"]"]
else:
print "Variablen Kollision :" +repr(i[2])+" ist in " +repr(symbols[sym]) + " und "+ varName +"["+i[1]+"] vergeben"
sys.exit(1)
## Symbole wieder entfernen
LOGIK=re.sub("[@][@]\w+", "",LOGIK)
#im Code tauschen
for i in symbols.keys():
code=[code[0],re.sub("[\@][\@]"+i+"([ACN])",symbols[i][0]+"\\1"+symbols[i][1],code[1]),re.sub("[\@][\@]"+i+"([ACN])",symbols[i][0]+"\\1"+symbols[i][1],code[2])]
code=[code[0],re.sub("[\@][\@]"+i+"",symbols[i][0]+"N"+symbols[i][1],code[1]),re.sub("[\@][\@]"+i+"",symbols[i][0]+"N"+symbols[i][1],code[2])]
return LOGIK,code
NCODE=[]
commentcode=[]
for codepart in code:
NLOGIK,codepart=symbolize(LOGIK,codepart)
NCODE.append(codepart)
if codepart[0]==0 or codepart[0]==3:
commentcode.append("##########################\n###### Quelltext: ########\n##########################"+"\n##".join(codepart[2].split("\n"))+"\n")
#else:
# commentcode.append("#"+codepart[2].split("\n")[1]+"\n################################\n## Quelltext nicht Öffentlich ##\n################################")
NLOGIK,postlogik = symbolize(LOGIK,postlogik)
LOGIK=NLOGIK
code=NCODE
## Doku
doku = """
<html>
<head><title></title></head>
<link rel="stylesheet" href="style.css" type="text/css">
<body><div class="titel">"""+LOGIKNAME+"""</div>
<div class="nav"><A HREF="index.html">Hilfe</A> / <A HREF="logic.html">Logik</A> / """+LOGIKNAME+""" / <A HREF="#anker1">Eingänge</A> / <A HREF="#anker2">Ausgänge</A></div><div class="field0">Funktion</div>
<div class="field1">"""+re.sub("\r\n|\n","<br>",LOGIKDESC.decode("iso-8859-1").encode("ascii","xmlcharrefreplace") )+"""</div>
<div class="field0">Eingänge</div>
<a name="anker1" /><table border="1" width="612" class="log_e" cellpadding="0" cellspacing="0">
<COL WIDTH=203><COL WIDTH=132><COL WIDTH=275>
<tr><td>Eingang</td><td>Init</td><td>Beschreibung</td></tr>
"""+LOGIKINHTM.decode("iso-8859-1").encode("ascii","xmlcharrefreplace") +"""
</table>
<div class="field0">Ausgänge</div>
<a name="anker2" /><table border="1" width="612" class="log_a" cellpadding="0" cellspacing="0">
<COL WIDTH=203><COL WIDTH=132><COL WIDTH=275>
<tr><td>Ausgang</td><td>Init</td><td>Beschreibung</td></tr>
"""+LOGIKOUTHTM.decode("iso-8859-1").encode("ascii","xmlcharrefreplace") +"""
</table>
<div class="field0">Sonstiges</div>
<div class="field1">Neuberechnung beim Start: """+CALCSTART+"""<br />Baustein ist remanent: """+LOGIKREMANT+"""<br />Interne Bezeichnung: """+LOGIKID+"""<br />Der Baustein wird im "Experten" in der Kategorie '"""+LOGIKCAT+"""' einsortiert.<br /></div>
</body></html>
"""
if doDoku:
open("log"+LOGIKID+".html",'w').write(doku)
LIVECODE="""
if EN["""+str(ANZIN+1)+"""].find("<id"""+LOGIKID+""">")!=-1:
print "LivePort " +str(len(EN["""+str(ANZIN+1)+"""]))+ " Bytes erhalten"
try:
__LiveDebugCode_="".join(__import__('re').findall("(?i)<id"""+LOGIKID+""">(.*)</id"""+LOGIKID+""">",EN["""+str(ANZIN+1)+"""]))
print "LiveDebug-Daten ID:"""+LOGIKID+" Name:"+LOGIKNAME+""" "
except:
pass
print "Fehler Datenlesen"
__LiveDebugCode_=''
if __LiveDebugCode_.find("<inject>") != -1:
SN["""+str(ANZSP+2)+"""]+="".join(__import__('re').findall("(?i)<inject>([A-Za-z0-9\\x2B\\x3D\\x2F]+?)</inject>", __LiveDebugCode_))
print "Daten erhalten Buffer: " + str(len(SN["""+str(ANZSP+2)+"""]))
elif __LiveDebugCode_.find("<compile />") != -1:
print "Compile"
try:
__LiveBase64Code_=__import__('base64').decodestring(SN["""+str(ANZSP+2)+"""])
print __LiveBase64Code_
except:
pass
print "Base64 Error"
raise
try:
SN["""+str(ANZSP+1)+"""]=compile(__LiveBase64Code_,'<LiveDebug_"""+LOGIKID+""">','exec')
SC["""+str(ANZSP+1)+"""]=1
print "Running"
except:
pass
SN["""+str(ANZSP+1)+"""]="0"
SC["""+str(ANZSP+1)+"""]=1
print "Compile Error"
SN["""+str(ANZSP+2)+"""]=''
elif __LiveDebugCode_.find("<vars>") == 0:
print "Run Script"
try:
__LiveBase64Code_=__import__('base64').decodestring("".join(__import__('re').findall("(?i)<vars>([A-Za-z0-9\\x2B\\x3D\\x2F]+?)</vars>", __LiveDebugCode_)))
except:
pass
print "Script Base64 Error"
__LiveBase64Code_='0'
try:
eval(compile(__LiveBase64Code_,'<LiveDebugVars"""+LOGIKID+""">','exec'))
except:
print "Script Error"
print __LiveBase64Code_
print __import__('traceback').print_exception(__import__('sys').exc_info()[0],__import__('sys').exc_info()[1],__import__('sys').exc_info()[2])
raise
else:
print "unbekanntes TAG: " + repr(__LiveDebugCode_)
"""
#print LIVECODE
LOGIKFILE=LOGIKID+"_"+LOGIKNAME
## Debug Lines
NCODE=[]
if debug or livedebug:
for codepart in code:
codepart[2]=re.sub("###DEBUG###","",codepart[2])
NCODE.append(codepart)
code=NCODE
#print "\n".join(code)
def commentRemover(code):
## Komentar Remover
## thanks to gaston
codelist=code[2].split("\n")
removelist=[]
lencode=len(codelist)-1
for i in range(1,lencode):
codeline=codelist[lencode-i].lstrip(" \t")
if len(codeline)>0:
if codeline[0]=='#':
removelist.insert(0,"REMOVED: ("+str(lencode-i)+") "+codelist.pop(lencode-i))
else:
codelist.pop(lencode-i)
return ([code[0],code[1],"\n".join(codelist)],"\n".join(removelist))
Nremoved=""
NCode=[]
for codepart in code:
codepart, removed=commentRemover(codepart)
Nremoved=Nremoved+removed
NCode.append(codepart)
code=NCode
#print Nremoved
#print "\n\n"
#print code
if livedebug:
NCODE="\n##### VERSION #### %04d-%02d-%02d %02d:%02d:%02d ###\n" % time.localtime()[:6]
code.append(NCODE)
CODELENGTH=len(repr(code))
breakStart=str((int(CALCSTARTBOOL)-1)*-1)
LOGIKARRAY=LOGIK.split("\n")
lformel=""
def compileMe(code,doByteCode,BEDINGUNG=''):
if doByteCode:
data=compile(code,"<"+LOGIKFILE+">","exec")
data=marshal.dumps(data)
version = sys.version[:3]
formel = ""
if doByteCode==2:
formel += "5012|0|\""+BEDINGUNG+"\"|\"eval(__import__('marshal').loads(__import__('zlib').decompress(__import__('base64').decodestring('"+re.sub("\n","",base64.encodestring(zlib.compress(data,6)))+"'))))\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
else:
formel += "5012|0|\""+BEDINGUNG+"\"|\"eval(__import__('marshal').loads(__import__('base64').decodestring('"+re.sub("\n","",base64.encodestring(data))+"')))\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
formel+="\n"
else:
if doCache:
LOGIKDEFARRAY=LOGIKARRAY[LHSDEFINELINE].split("|")
if livedebug:
LOGIKDEFARRAY[4]=str(ANZSP+2)
else:
LOGIKDEFARRAY[4]=str(ANZSP+1)
LOGIKARRAY[LHSDEFINELINE]="|".join(LOGIKDEFARRAY)
LOGIKARRAY[LSPDEFINELINE]+="\n"+"5003|"+str(ANZSP+1)+"|\"0\"|0 # Base64 Code-Cache"
if livedebug:
LOGIKARRAY[LSPDEFINELINE]+="\n"+"5003|"+str(ANZSP+2)+"|\"\"|0 # LivePortBase64Buffer"
if livedebug:
formel = "5012|0|\"EI or EC["+str(ANZIN+1)+"]\"|\"eval(compile(__import__('base64').decodestring('"+re.sub("\n","",base64.encodestring(LIVECODE))+"'),'<"+LOGIKFILE+">','exec'))\"|\"\"|0|0|0|0\n"
#formel += "5012|0|\"("+BEDINGUNG+") or SC["+str(ANZSP+1)+"]\"|\"eval(SN["+str(ANZSP+1)+"])\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
formel += "5012|0|\"\"|\"eval(SN["+str(ANZSP+1)+"])\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
else:
formel = "5012|0|\"EI\"|\"compile(__import__('base64').decodestring('"+re.sub("\n","",base64.encodestring(code))+"'),'<"+LOGIKFILE+">','exec')\"|\"\"|0|0|"+str(ANZSP+1)+"|0\n"
formel += "5012|0|\""+BEDINGUNG+"\"|\"eval(SN["+str(ANZSP+1)+"])\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
else:
formel = "5012|0|\""+BEDINGUNG+"\"|\"eval(compile(__import__('base64').decodestring('"+re.sub("\n","",base64.encodestring(code))+"'),'<"+LOGIKFILE+">','exec'))\"|\""+ZEITFORMEL+"\"|0|"+ZEITSPEICHER+"|0|0"
#formel+="\n## MD5 der Formelzeile: "+md5.new(formel).hexdigest()
return formel
formel=""
for i in range(len(code)):
codepart=code[i]
if codepart[0]==1:
tempBC=1
if codepart[0]==2:
tempBC=2
else:
tempBC=doByteCode
if livedebug:
doCache=True
formel=compileMe(LIVECODE,False,BEDINGUNG="")
break
formel+=compileMe(codepart[2],tempBC,BEDINGUNG=codepart[1])
#formel+=commentcode[i]+"\n\n"
### DEBUG ###
formel+="\n"+postlogik[2]
## Debuggerbaustein
if livedebug:
LOGIKDEFARRAY=LOGIKARRAY[LEXPDEFINELINE].split("|")
LOGIKDEFARRAY[3]=str(ANZIN+1)
LOGIKDEFARRAY[3+ANZIN]+="|\"E"+str(ANZIN+1)+" DEBUG\""
LOGIKARRAY[LEXPDEFINELINE]="|".join(LOGIKDEFARRAY)
LOGIKDEFARRAY=LOGIKARRAY[LHSDEFINELINE].split("|")
LOGIKDEFARRAY[1]=str(ANZIN+1)
LOGIKARRAY[LHSDEFINELINE]="|".join(LOGIKDEFARRAY)
LOGIKARRAY[LINDEFINELINE]+="\n"+"5002|"+str(ANZIN+1)+"|\"\"|1 # Debugger Live in"
LOGIK = "\n".join(LOGIKARRAY)
allcode=""
for i in code:
allcode+=i[2]+"\n"
if showList:
codeobj=allcode.split("\n")
for i in range(0,len(codeobj)):
print str(i)+": "+codeobj[i]
if debug and not livedebug:
debugstart=time.clock()
allcode += debugcode
if not noexec:
exec(allcode)
else:
compile(allcode,"<code>","exec")
debugtime=time.clock()-debugstart
print "Logikausfuehrzeit: %.4f ms" % (debugtime)
if debugtime>1:
print """
###############################################
### !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ###
### !!!ACHTUNG: sehr lange Ausfürungszeit!! ###
### !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ###
###############################################
"""
if debug or doSend:
del EN[0]
del SN[0]
del AN[0]
if livedebug:
#formel=lformel
LOGIK="""############################\n#### DEBUG BAUSTEIN #######\n############################\n"""+LOGIK
livesend=re.sub("\n","",base64.encodestring(allcode))
sock = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
sock.connect((livehost,liveport))
Livepackets=0
while livesend!="":
Livepackets+=1
sock.sendall("<xml><id"+LOGIKID+"><inject>"+livesend[:4000]+"</inject></id"+LOGIKID+"></xml>")
livesend=livesend[4000:]
time.sleep(0.1)
time.sleep(1)
sock.sendall("<xml><id"+LOGIKID+"><compile /></id"+LOGIKID+"></xml>")
print str(Livepackets)+ " Packet per UDP verschickt"
sock.close()
if doSend:
## Das auslösen über den Debug verhindern
sendVars="EC["+str(ANZIN+1)+"]=0\n"+sendVars
sock = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
sock.connect((livehost,liveport))
sock.sendall("<xml><id"+LOGIKID+"><vars>"+re.sub("\n","",base64.encodestring(sendVars)+"</vars></id"+LOGIKID+"></xml>\n"))
sock.close()
if VERSION !="":
VERSION="_"+VERSION
if debug:
VERSION+="_DEBUG"