rem Zeitraffer im Zeitfenster rem allbest 51 ab Build 144 @title ZR Zeitfenster @param a Startzeit (Std.) @default a 0 @param b Startzeit (Min.) @default b 0 @param c Startzeit (Sek.) @default c 0 @param d Intervall (Min.) @default d 0 @param e Intervall (Sek.) @default e 0 @param f Stopzeit (Std.) @default f 0 @param g Stopzeit (Min.) @default g 0 @param h Stopzeit (Sek.) @default h 0 rem schneller als alle 3 Sekunden geht nicht mit diesem Script (S2IS) z=(d*60)+e if z<3 then z=3 x=get_day_seconds y=x/60 H=y/60 M=y-(H*60) S=x-(y*60) rem kurze Anzeige der Einstellungen print "es ist",H,":",M,":"S print "starte",a,":",b,":"c print "stoppe",f,":",g,":"h print "Fotos alle",z,"Sek." sleep 4000 cls rem Anfangs- und Endzeit berechnen A=(a*3600)+(b*60)+c E=(f*3600)+(g*60)+h gosub "lcd_off" if A>E then goto "nachts" :tags Z=get_day_seconds if A