diff options
author | Vishnu Easwaran E | 2020-05-19 16:14:47 +0530 |
---|---|---|
committer | Vishnu Easwaran E | 2020-05-19 16:14:47 +0530 |
commit | 7b9f6fdfecd1c7535276e58246011f0e0da9ddbb (patch) | |
tree | cb59241a104d5e82e289140cb6413fbbe4c17319 /OpenPLC_version_1/ladder-files/blinking.ld | |
parent | 6e7f987a27fc434057bca9f92a3b0ec7b72e69f8 (diff) | |
download | OpenPLC-7b9f6fdfecd1c7535276e58246011f0e0da9ddbb.tar.gz OpenPLC-7b9f6fdfecd1c7535276e58246011f0e0da9ddbb.tar.bz2 OpenPLC-7b9f6fdfecd1c7535276e58246011f0e0da9ddbb.zip |
[vishnu] moved LD example files to v1 directory
Diffstat (limited to 'OpenPLC_version_1/ladder-files/blinking.ld')
-rwxr-xr-x | OpenPLC_version_1/ladder-files/blinking.ld | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/OpenPLC_version_1/ladder-files/blinking.ld b/OpenPLC_version_1/ladder-files/blinking.ld new file mode 100755 index 0000000..2dc1811 --- /dev/null +++ b/OpenPLC_version_1/ladder-files/blinking.ld @@ -0,0 +1,22 @@ +LDmicro0.1
+MICRO=Atmel AVR ATmega16 40-PDIP
+CYCLE=10000
+CRYSTAL=4000000
+BAUD=2400
+COMPILED=Z:\home\nivedita\Downloads\LLED.hex
+
+IO LIST
+ Yled at 3
+END
+
+PROGRAM
+RUNG
+ CONTACTS Rosc 0
+ TON Ton 1000000
+ TOF Toff 1000000
+ COIL Rosc 1 0 0
+END
+RUNG
+ CONTACTS Rosc 0
+ COIL Yled 0 0 0
+END
|