├── .gitignore ├── .gitmodules ├── LICENSE ├── OpenPLC_Atmega16 ├── Documentation │ ├── Creating-Ladders.rst │ ├── Programming-OpenPLC.rst │ └── Software-Requirements.rst ├── Experiments │ ├── 1_LED-PLC │ │ ├── LED.rst │ │ └── blinking.ld │ └── 2_Motor-PLC │ │ ├── motor-on-off.ld │ │ ├── motor.rst │ │ └── switch-motor.ld ├── assets │ ├── Comm.png │ ├── Downloading-LD-Micro.png │ ├── Figcmd.png │ ├── PIN.png │ ├── Setup.png │ ├── avrdude1.png │ ├── change.png │ ├── cont.png │ ├── fuse1.png │ ├── fuse2.png │ ├── ld1.png │ ├── manavrdude.png │ ├── openplc.png │ ├── prop.png │ ├── states.png │ └── usb.png ├── hardware │ ├── Gerber_Files_OpenPLC_ATmega16.zip │ ├── README.md │ ├── assets │ │ └── v1.png │ └── legacy_Versions │ │ └── v_1.0 │ │ ├── KiCAD_Files │ │ ├── OpenPLC_Kicad-cache.lib │ │ ├── OpenPLC_Kicad-rescue.lib │ │ ├── OpenPLC_Kicad.pro │ │ ├── OpenPLC_Kicad.sch │ │ ├── OpenPLC_Modular-rescue.lib │ │ └── schema.pdf │ │ └── OpenPLC.sch ├── ladder-files │ ├── blinking.hex │ ├── blinking.ld │ ├── motor-delay.hex │ ├── motor-delay.ld │ ├── motor-on-off.hex │ ├── motor-on-off.ld │ ├── switch-led.hex │ ├── switch-led.ld │ ├── switch-motor.hex │ └── switch-motor.ld └── software │ ├── README.md │ ├── SoftImages │ ├── Add.svg │ ├── CountDown.svg │ ├── CountUp.svg │ ├── Div.svg │ ├── Multiply.svg │ ├── NegatedCoil.svg │ ├── NegatedContact.svg │ ├── NormalCoil.svg │ ├── NormalContact.svg │ ├── OffTimer.svg │ ├── OnTimer.svg │ ├── Reset.svg │ ├── ResetOnlyCoil.svg │ ├── SetOnlyCoil.svg │ ├── Sub.svg │ ├── ldmicro.png │ └── ldmicro.svg │ ├── linux-debian │ ├── Gtk │ │ ├── LDMicro-2.2.0-Linux-Ubuntu14.04.deb │ │ ├── LDMicro-2.2.0-Linux-Ubuntu16.04.deb │ │ ├── LDMicro-2.2.0-Linux-Ubuntu18.04.deb │ │ ├── LDMicro-2.2.4-Linux.deb │ │ ├── LDMicro-2.2.5-Linux-Gtk14.deb │ │ └── LDMicro-2.2.5-Linux-Gtk16.deb │ └── Qt │ │ ├── LDmicro_Qt-2.3.1-Linux-bionic.deb │ │ ├── LDmicro_Qt-2.3.1-Linux-xenial.deb │ │ ├── LDmicro_Qt-2.3.2-Linux-bionic.deb │ │ ├── LDmicro_Qt-2.3.2-Linux-xenial.deb │ │ ├── LDmicro_Qt-bionic--2.3.0-Linux.deb │ │ └── LDmicro_Qt-xenial--2.3.0-Linux.deb │ └── win32 │ └── ldmicro.exe ├── OpenPLC_Raspberry_Pi └── software │ └── README.md ├── OpenPLC_modules ├── CAD_designs │ ├── LiftSetup │ │ └── Lift.svg │ └── SwitchSetup │ │ └── Switch.svg ├── LICENSE ├── README.md ├── assets │ ├── heaterPCB.png │ ├── liftPCB.png │ ├── switchesPCB.png │ ├── trafficPCB.png │ └── v1.png ├── bomConsolidated.ods ├── gerber.zip ├── gerber_files │ ├── heaterGerber │ │ ├── heater-B.Cu.gbr │ │ ├── heater-B.Mask.gbr │ │ ├── heater-B.Paste.gbr │ │ ├── heater-B.SilkS.gbr │ │ ├── heater-Edge.Cuts.gbr │ │ ├── heater-F.Cu.gbr │ │ ├── heater-F.Mask.gbr │ │ ├── heater-F.Paste.gbr │ │ ├── heater-F.SilkS.gbr │ │ ├── heater-NPTH.drl │ │ └── heater-PTH.drl │ ├── motorGerber │ │ ├── heater-B.Cu.gbr │ │ ├── heater-B.Mask.gbr │ │ ├── heater-B.Paste.gbr │ │ ├── heater-B.SilkS.gbr │ │ ├── heater-Edge.Cuts.gbr │ │ ├── heater-F.Cu.gbr │ │ ├── heater-F.Mask.gbr │ │ ├── heater-F.Paste.gbr │ │ ├── heater-F.SilkS.gbr │ │ ├── heater-NPTH.drl │ │ └── heater-PTH.drl │ ├── switchesGerber │ │ ├── switches-B.Cu.gbr │ │ ├── switches-B.Mask.gbr │ │ ├── switches-B.Paste.gbr │ │ ├── switches-B.SilkS.gbr │ │ ├── switches-Edge.Cuts.gbr │ │ ├── switches-F.Cu.gbr │ │ ├── switches-F.Mask.gbr │ │ ├── switches-F.Paste.gbr │ │ ├── switches-F.SilkS.gbr │ │ ├── switches-NPTH.drl │ │ ├── switches-PTH.drl │ │ └── switches-brd.svg │ └── trafficGerber │ │ ├── traffic-B.Cu.gbr │ │ ├── traffic-B.Mask.gbr │ │ ├── traffic-B.Paste.gbr │ │ ├── traffic-B.SilkS.gbr │ │ ├── traffic-Edge.Cuts.gbr │ │ ├── traffic-F.Cu.gbr │ │ ├── traffic-F.Mask.gbr │ │ ├── traffic-F.Paste.gbr │ │ ├── traffic-F.SilkS.gbr │ │ ├── traffic-NPTH.drl │ │ └── traffic-PTH.drl ├── heater │ ├── .gitignore │ ├── boardOutline.fcstd │ ├── boardOutline.fcstd1 │ ├── bom │ │ └── ibom.html │ ├── gerber │ │ ├── heater-B.Cu.gbr │ │ ├── heater-B.Mask.gbr │ │ ├── heater-B.Paste.gbr │ │ ├── heater-B.SilkS.gbr │ │ ├── heater-Edge.Cuts.gbr │ │ ├── heater-F.Cu.gbr │ │ ├── heater-F.Mask.gbr │ │ ├── heater-F.Paste.gbr │ │ ├── heater-F.SilkS.gbr │ │ ├── heater-NPTH.drl │ │ └── heater-PTH.drl │ ├── heater │ ├── heater-cache.lib │ ├── heater.kicad_pcb │ ├── heater.pro │ ├── heater.sch │ └── heaterBoard.dxf ├── motor │ ├── .gitignore │ ├── bom │ │ └── ibom.html │ ├── gerber │ │ ├── motor-B.Cu.gbr │ │ ├── motor-B.Mask.gbr │ │ ├── motor-B.Paste.gbr │ │ ├── motor-B.SilkS.gbr │ │ ├── motor-Edge.Cuts.gbr │ │ ├── motor-F.Cu.gbr │ │ ├── motor-F.Mask.gbr │ │ ├── motor-F.Paste.gbr │ │ ├── motor-F.SilkS.gbr │ │ ├── motor-NPTH.drl │ │ └── motor-PTH.drl │ ├── motor │ ├── motor-cache.lib │ ├── motor.kicad_pcb │ ├── motor.pro │ ├── motor.sch │ ├── motorCutlines.dxf │ ├── motorPCB.fcstd │ └── motorPCB.fcstd1 ├── switches │ ├── .gitignore │ ├── boardoutlineSwithes.fcstd │ ├── boardoutlineSwithes.fcstd1 │ ├── bom │ │ └── ibom.html │ ├── cutlineSwitch.dxf │ ├── gerber │ │ ├── switches-B.Cu.gbr │ │ ├── switches-B.Mask.gbr │ │ ├── switches-B.Paste.gbr │ │ ├── switches-B.SilkS.gbr │ │ ├── switches-Edge.Cuts.gbr │ │ ├── switches-F.Cu.gbr │ │ ├── switches-F.Mask.gbr │ │ ├── switches-F.Paste.gbr │ │ ├── switches-F.SilkS.gbr │ │ ├── switches-NPTH.drl │ │ ├── switches-PTH.drl │ │ └── switches-brd.svg │ ├── switches │ ├── switches-cache.lib │ ├── switches.kicad_pcb │ ├── switches.pro │ └── switches.sch └── traffic │ ├── .gitignore │ ├── bom │ └── ibom.html │ ├── gerber │ ├── traffic-B.Cu.gbr │ ├── traffic-B.Mask.gbr │ ├── traffic-B.Paste.gbr │ ├── traffic-B.SilkS.gbr │ ├── traffic-Edge.Cuts.gbr │ ├── traffic-F.Cu.gbr │ ├── traffic-F.Mask.gbr │ ├── traffic-F.Paste.gbr │ ├── traffic-F.SilkS.gbr │ ├── traffic-NPTH.drl │ └── traffic-PTH.drl │ ├── traffic │ ├── traffic-cache.lib │ ├── traffic.kicad_pcb │ ├── traffic.pro │ └── traffic.sch ├── README.md └── assets └── v2.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenPLC_Atmega16/Documentation/Creating-Ladders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/Documentation/Creating-Ladders.rst -------------------------------------------------------------------------------- /OpenPLC_Atmega16/Documentation/Programming-OpenPLC.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/Documentation/Programming-OpenPLC.rst -------------------------------------------------------------------------------- /OpenPLC_Atmega16/Documentation/Software-Requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/Documentation/Software-Requirements.rst -------------------------------------------------------------------------------- /OpenPLC_Atmega16/Experiments/1_LED-PLC/LED.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/Experiments/1_LED-PLC/LED.rst -------------------------------------------------------------------------------- /OpenPLC_Atmega16/Experiments/1_LED-PLC/blinking.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/Experiments/1_LED-PLC/blinking.ld -------------------------------------------------------------------------------- /OpenPLC_Atmega16/Experiments/2_Motor-PLC/motor-on-off.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/Experiments/2_Motor-PLC/motor-on-off.ld -------------------------------------------------------------------------------- /OpenPLC_Atmega16/Experiments/2_Motor-PLC/motor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/Experiments/2_Motor-PLC/motor.rst -------------------------------------------------------------------------------- /OpenPLC_Atmega16/Experiments/2_Motor-PLC/switch-motor.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/Experiments/2_Motor-PLC/switch-motor.ld -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/Comm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/Comm.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/Downloading-LD-Micro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/Downloading-LD-Micro.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/Figcmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/Figcmd.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/PIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/PIN.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/Setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/Setup.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/avrdude1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/avrdude1.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/change.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/cont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/cont.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/fuse1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/fuse1.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/fuse2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/fuse2.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/ld1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/ld1.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/manavrdude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/manavrdude.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/openplc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/openplc.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/prop.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/states.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/assets/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/assets/usb.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/hardware/Gerber_Files_OpenPLC_ATmega16.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/hardware/Gerber_Files_OpenPLC_ATmega16.zip -------------------------------------------------------------------------------- /OpenPLC_Atmega16/hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/hardware/README.md -------------------------------------------------------------------------------- /OpenPLC_Atmega16/hardware/assets/v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/hardware/assets/v1.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/OpenPLC_Kicad-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/OpenPLC_Kicad-cache.lib -------------------------------------------------------------------------------- /OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/OpenPLC_Kicad-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/OpenPLC_Kicad-rescue.lib -------------------------------------------------------------------------------- /OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/OpenPLC_Kicad.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/OpenPLC_Kicad.pro -------------------------------------------------------------------------------- /OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/OpenPLC_Kicad.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/OpenPLC_Kicad.sch -------------------------------------------------------------------------------- /OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/OpenPLC_Modular-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/OpenPLC_Modular-rescue.lib -------------------------------------------------------------------------------- /OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/schema.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/KiCAD_Files/schema.pdf -------------------------------------------------------------------------------- /OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/OpenPLC.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/hardware/legacy_Versions/v_1.0/OpenPLC.sch -------------------------------------------------------------------------------- /OpenPLC_Atmega16/ladder-files/blinking.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/ladder-files/blinking.hex -------------------------------------------------------------------------------- /OpenPLC_Atmega16/ladder-files/blinking.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/ladder-files/blinking.ld -------------------------------------------------------------------------------- /OpenPLC_Atmega16/ladder-files/motor-delay.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/ladder-files/motor-delay.hex -------------------------------------------------------------------------------- /OpenPLC_Atmega16/ladder-files/motor-delay.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/ladder-files/motor-delay.ld -------------------------------------------------------------------------------- /OpenPLC_Atmega16/ladder-files/motor-on-off.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/ladder-files/motor-on-off.hex -------------------------------------------------------------------------------- /OpenPLC_Atmega16/ladder-files/motor-on-off.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/ladder-files/motor-on-off.ld -------------------------------------------------------------------------------- /OpenPLC_Atmega16/ladder-files/switch-led.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/ladder-files/switch-led.hex -------------------------------------------------------------------------------- /OpenPLC_Atmega16/ladder-files/switch-led.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/ladder-files/switch-led.ld -------------------------------------------------------------------------------- /OpenPLC_Atmega16/ladder-files/switch-motor.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/ladder-files/switch-motor.hex -------------------------------------------------------------------------------- /OpenPLC_Atmega16/ladder-files/switch-motor.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/ladder-files/switch-motor.ld -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/README.md -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/Add.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/CountDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/CountDown.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/CountUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/CountUp.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/Div.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/Div.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/Multiply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/Multiply.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/NegatedCoil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/NegatedCoil.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/NegatedContact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/NegatedContact.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/NormalCoil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/NormalCoil.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/NormalContact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/NormalContact.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/OffTimer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/OffTimer.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/OnTimer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/OnTimer.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/Reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/Reset.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/ResetOnlyCoil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/ResetOnlyCoil.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/SetOnlyCoil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/SetOnlyCoil.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/Sub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/Sub.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/ldmicro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/ldmicro.png -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/SoftImages/ldmicro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/SoftImages/ldmicro.svg -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.0-Linux-Ubuntu14.04.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.0-Linux-Ubuntu14.04.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.0-Linux-Ubuntu16.04.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.0-Linux-Ubuntu16.04.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.0-Linux-Ubuntu18.04.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.0-Linux-Ubuntu18.04.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.4-Linux.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.4-Linux.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.5-Linux-Gtk14.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.5-Linux-Gtk14.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.5-Linux-Gtk16.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Gtk/LDMicro-2.2.5-Linux-Gtk16.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-2.3.1-Linux-bionic.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-2.3.1-Linux-bionic.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-2.3.1-Linux-xenial.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-2.3.1-Linux-xenial.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-2.3.2-Linux-bionic.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-2.3.2-Linux-bionic.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-2.3.2-Linux-xenial.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-2.3.2-Linux-xenial.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-bionic--2.3.0-Linux.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-bionic--2.3.0-Linux.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-xenial--2.3.0-Linux.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/linux-debian/Qt/LDmicro_Qt-xenial--2.3.0-Linux.deb -------------------------------------------------------------------------------- /OpenPLC_Atmega16/software/win32/ldmicro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Atmega16/software/win32/ldmicro.exe -------------------------------------------------------------------------------- /OpenPLC_Raspberry_Pi/software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_Raspberry_Pi/software/README.md -------------------------------------------------------------------------------- /OpenPLC_modules/CAD_designs/LiftSetup/Lift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/CAD_designs/LiftSetup/Lift.svg -------------------------------------------------------------------------------- /OpenPLC_modules/CAD_designs/SwitchSetup/Switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/CAD_designs/SwitchSetup/Switch.svg -------------------------------------------------------------------------------- /OpenPLC_modules/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/LICENSE -------------------------------------------------------------------------------- /OpenPLC_modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/README.md -------------------------------------------------------------------------------- /OpenPLC_modules/assets/heaterPCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/assets/heaterPCB.png -------------------------------------------------------------------------------- /OpenPLC_modules/assets/liftPCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/assets/liftPCB.png -------------------------------------------------------------------------------- /OpenPLC_modules/assets/switchesPCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/assets/switchesPCB.png -------------------------------------------------------------------------------- /OpenPLC_modules/assets/trafficPCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/assets/trafficPCB.png -------------------------------------------------------------------------------- /OpenPLC_modules/assets/v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/assets/v1.png -------------------------------------------------------------------------------- /OpenPLC_modules/bomConsolidated.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/bomConsolidated.ods -------------------------------------------------------------------------------- /OpenPLC_modules/gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber.zip -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/heaterGerber/heater-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/heaterGerber/heater-B.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/heaterGerber/heater-B.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/heaterGerber/heater-B.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/heaterGerber/heater-B.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/heaterGerber/heater-B.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/heaterGerber/heater-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/heaterGerber/heater-B.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/heaterGerber/heater-Edge.Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/heaterGerber/heater-Edge.Cuts.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/heaterGerber/heater-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/heaterGerber/heater-F.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/heaterGerber/heater-F.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/heaterGerber/heater-F.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/heaterGerber/heater-F.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/heaterGerber/heater-F.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/heaterGerber/heater-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/heaterGerber/heater-F.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/heaterGerber/heater-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/heaterGerber/heater-NPTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/heaterGerber/heater-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/heaterGerber/heater-PTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/motorGerber/heater-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/motorGerber/heater-B.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/motorGerber/heater-B.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/motorGerber/heater-B.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/motorGerber/heater-B.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/motorGerber/heater-B.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/motorGerber/heater-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/motorGerber/heater-B.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/motorGerber/heater-Edge.Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/motorGerber/heater-Edge.Cuts.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/motorGerber/heater-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/motorGerber/heater-F.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/motorGerber/heater-F.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/motorGerber/heater-F.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/motorGerber/heater-F.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/motorGerber/heater-F.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/motorGerber/heater-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/motorGerber/heater-F.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/motorGerber/heater-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/motorGerber/heater-NPTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/motorGerber/heater-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/motorGerber/heater-PTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-B.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-B.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-B.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-B.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-B.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-B.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-Edge.Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-Edge.Cuts.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-F.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-F.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-F.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-F.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-F.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-F.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-NPTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-PTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/switchesGerber/switches-brd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/switchesGerber/switches-brd.svg -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/trafficGerber/traffic-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/trafficGerber/traffic-B.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/trafficGerber/traffic-B.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/trafficGerber/traffic-B.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/trafficGerber/traffic-B.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/trafficGerber/traffic-B.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/trafficGerber/traffic-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/trafficGerber/traffic-B.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/trafficGerber/traffic-Edge.Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/trafficGerber/traffic-Edge.Cuts.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/trafficGerber/traffic-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/trafficGerber/traffic-F.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/trafficGerber/traffic-F.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/trafficGerber/traffic-F.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/trafficGerber/traffic-F.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/trafficGerber/traffic-F.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/trafficGerber/traffic-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/trafficGerber/traffic-F.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/trafficGerber/traffic-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/trafficGerber/traffic-NPTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/gerber_files/trafficGerber/traffic-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/gerber_files/trafficGerber/traffic-PTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/heater/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/.gitignore -------------------------------------------------------------------------------- /OpenPLC_modules/heater/boardOutline.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/boardOutline.fcstd -------------------------------------------------------------------------------- /OpenPLC_modules/heater/boardOutline.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/boardOutline.fcstd1 -------------------------------------------------------------------------------- /OpenPLC_modules/heater/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/bom/ibom.html -------------------------------------------------------------------------------- /OpenPLC_modules/heater/gerber/heater-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/gerber/heater-B.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/heater/gerber/heater-B.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/gerber/heater-B.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/heater/gerber/heater-B.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/gerber/heater-B.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/heater/gerber/heater-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/gerber/heater-B.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/heater/gerber/heater-Edge.Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/gerber/heater-Edge.Cuts.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/heater/gerber/heater-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/gerber/heater-F.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/heater/gerber/heater-F.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/gerber/heater-F.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/heater/gerber/heater-F.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/gerber/heater-F.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/heater/gerber/heater-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/gerber/heater-F.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/heater/gerber/heater-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/gerber/heater-NPTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/heater/gerber/heater-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/gerber/heater-PTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/heater/heater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/heater -------------------------------------------------------------------------------- /OpenPLC_modules/heater/heater-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/heater-cache.lib -------------------------------------------------------------------------------- /OpenPLC_modules/heater/heater.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/heater.kicad_pcb -------------------------------------------------------------------------------- /OpenPLC_modules/heater/heater.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/heater.pro -------------------------------------------------------------------------------- /OpenPLC_modules/heater/heater.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/heater.sch -------------------------------------------------------------------------------- /OpenPLC_modules/heater/heaterBoard.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/heater/heaterBoard.dxf -------------------------------------------------------------------------------- /OpenPLC_modules/motor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/.gitignore -------------------------------------------------------------------------------- /OpenPLC_modules/motor/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/bom/ibom.html -------------------------------------------------------------------------------- /OpenPLC_modules/motor/gerber/motor-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/gerber/motor-B.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/motor/gerber/motor-B.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/gerber/motor-B.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/motor/gerber/motor-B.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/gerber/motor-B.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/motor/gerber/motor-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/gerber/motor-B.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/motor/gerber/motor-Edge.Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/gerber/motor-Edge.Cuts.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/motor/gerber/motor-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/gerber/motor-F.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/motor/gerber/motor-F.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/gerber/motor-F.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/motor/gerber/motor-F.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/gerber/motor-F.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/motor/gerber/motor-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/gerber/motor-F.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/motor/gerber/motor-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/gerber/motor-NPTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/motor/gerber/motor-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/gerber/motor-PTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/motor/motor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/motor -------------------------------------------------------------------------------- /OpenPLC_modules/motor/motor-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/motor-cache.lib -------------------------------------------------------------------------------- /OpenPLC_modules/motor/motor.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/motor.kicad_pcb -------------------------------------------------------------------------------- /OpenPLC_modules/motor/motor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/motor.pro -------------------------------------------------------------------------------- /OpenPLC_modules/motor/motor.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/motor.sch -------------------------------------------------------------------------------- /OpenPLC_modules/motor/motorCutlines.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/motorCutlines.dxf -------------------------------------------------------------------------------- /OpenPLC_modules/motor/motorPCB.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/motorPCB.fcstd -------------------------------------------------------------------------------- /OpenPLC_modules/motor/motorPCB.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/motor/motorPCB.fcstd1 -------------------------------------------------------------------------------- /OpenPLC_modules/switches/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/.gitignore -------------------------------------------------------------------------------- /OpenPLC_modules/switches/boardoutlineSwithes.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/boardoutlineSwithes.fcstd -------------------------------------------------------------------------------- /OpenPLC_modules/switches/boardoutlineSwithes.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/boardoutlineSwithes.fcstd1 -------------------------------------------------------------------------------- /OpenPLC_modules/switches/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/bom/ibom.html -------------------------------------------------------------------------------- /OpenPLC_modules/switches/cutlineSwitch.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/cutlineSwitch.dxf -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-B.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-B.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-B.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-B.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-B.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-B.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-Edge.Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-Edge.Cuts.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-F.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-F.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-F.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-F.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-F.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-F.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-NPTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-PTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/switches/gerber/switches-brd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/gerber/switches-brd.svg -------------------------------------------------------------------------------- /OpenPLC_modules/switches/switches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/switches -------------------------------------------------------------------------------- /OpenPLC_modules/switches/switches-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/switches-cache.lib -------------------------------------------------------------------------------- /OpenPLC_modules/switches/switches.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/switches.kicad_pcb -------------------------------------------------------------------------------- /OpenPLC_modules/switches/switches.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/switches.pro -------------------------------------------------------------------------------- /OpenPLC_modules/switches/switches.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/switches/switches.sch -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/.gitignore -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/bom/ibom.html -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/gerber/traffic-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/gerber/traffic-B.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/gerber/traffic-B.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/gerber/traffic-B.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/gerber/traffic-B.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/gerber/traffic-B.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/gerber/traffic-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/gerber/traffic-B.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/gerber/traffic-Edge.Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/gerber/traffic-Edge.Cuts.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/gerber/traffic-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/gerber/traffic-F.Cu.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/gerber/traffic-F.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/gerber/traffic-F.Mask.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/gerber/traffic-F.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/gerber/traffic-F.Paste.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/gerber/traffic-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/gerber/traffic-F.SilkS.gbr -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/gerber/traffic-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/gerber/traffic-NPTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/gerber/traffic-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/gerber/traffic-PTH.drl -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/traffic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/traffic -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/traffic-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/traffic-cache.lib -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/traffic.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/traffic.kicad_pcb -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/traffic.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/traffic.pro -------------------------------------------------------------------------------- /OpenPLC_modules/traffic/traffic.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/OpenPLC_modules/traffic/traffic.sch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/README.md -------------------------------------------------------------------------------- /assets/v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSEE/OpenPLC/HEAD/assets/v2.jpg --------------------------------------------------------------------------------