home *** CD-ROM | disk | FTP | other *** search
- '**************************************
- ' Aufgabe:
- '
- ' - Drehzahlmessung am DCF-Eingang
- ' - Senden ⁿber serielle Schnittstelle an PC
- ' - 2-Blatt-Propeller Faktor = 300
- ' - 3-Blatt-Propeller Faktor = 200
- ' - 4-Blatt-Propeller Faktor = 150
- '
- '**************************************
-
- define Blatt_2 300 '2-Blatt-Propeller
- define Blatt_3 200 '3-Blatt-Propeller
- define Blatt_4 150 '4-Blatt-Propeller
-
- define Mode word
-
- ' --- Programmoperationen -------------
-
- mode = Blatt_3
- #Loop
- if mode = Blatt_2 then print mode*freq; " 1/min" 'an PC senden
- if mode = Blatt_3 then print mode*freq; " 1/min"
- if mode = Blatt_4 then print mode*freq; " 1/min"
-
- pause 50 '1 s warten
- goto Loop 'Endlosschleife
-
-
-
-
-
-