├── .gitattributes ├── Christmas Tree PCB ├── .gitattributes ├── LICENSE ├── README.md ├── base.stl ├── christmass_tree.kicad_pcb ├── christmass_tree.net ├── christmass_tree.pro ├── christmass_tree.sch ├── gerbel.zip ├── tree.dxf ├── tree.svg ├── white1.dxf ├── white1.svg ├── white2.dxf ├── white2.svg ├── white3.dxf └── white3.svg ├── Encoded Motor Driver ├── .gitattributes ├── EncodedMotorController │ └── EncodedMotorController.ino ├── EncoderMotorDriver │ └── EncoderMotorDriver.ino ├── EnocderDriver │ ├── EnocderDriver-B.Cu.gbr │ ├── EnocderDriver-B.Mask.gbr │ ├── EnocderDriver-B.SilkS.gbr │ ├── EnocderDriver-Edge.Cuts.gbr │ ├── EnocderDriver-F.Cu.gbr │ ├── EnocderDriver-F.Mask.gbr │ ├── EnocderDriver-F.SilkS.gbr │ ├── EnocderDriver.drl │ ├── EnocderDriver.kicad_pcb │ ├── EnocderDriver.kicad_pcb-bak │ ├── EnocderDriver.net │ ├── EnocderDriver.pro │ ├── EnocderDriver.sch │ └── EnocderDriver.zip ├── LICENSE └── README.md ├── Guitar Tuner ├── Code │ └── guitar_tuner.ino ├── PCB │ ├── guitar_tuner.brd │ ├── guitar_tuner.sch │ └── pcb_gerber_files.zip └── Parts_List.xlsx ├── RC Robot ├── blink_simple │ └── blink_simple.ino └── rc_robot_with_arduino │ └── rc_robot_with_arduino.ino ├── README.md ├── Soldering Challenge ├── solderingtest.brd ├── solderingtest.sch └── solderingtest_2020-11-26.zip ├── Sprint Race Timing System ├── .gitattributes ├── SprintRaceTimer.ino ├── epd1in54.cpp ├── epd1in54.h ├── imagedata.cpp └── imagedata.h └── Watering System ├── LICENSE ├── case_bottom.stl ├── case_top.stl ├── schematic.png └── watering_system.ino /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/.gitattributes -------------------------------------------------------------------------------- /Christmas Tree PCB/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/.gitattributes -------------------------------------------------------------------------------- /Christmas Tree PCB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/LICENSE -------------------------------------------------------------------------------- /Christmas Tree PCB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/README.md -------------------------------------------------------------------------------- /Christmas Tree PCB/base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/base.stl -------------------------------------------------------------------------------- /Christmas Tree PCB/christmass_tree.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/christmass_tree.kicad_pcb -------------------------------------------------------------------------------- /Christmas Tree PCB/christmass_tree.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/christmass_tree.net -------------------------------------------------------------------------------- /Christmas Tree PCB/christmass_tree.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/christmass_tree.pro -------------------------------------------------------------------------------- /Christmas Tree PCB/christmass_tree.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/christmass_tree.sch -------------------------------------------------------------------------------- /Christmas Tree PCB/gerbel.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/gerbel.zip -------------------------------------------------------------------------------- /Christmas Tree PCB/tree.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/tree.dxf -------------------------------------------------------------------------------- /Christmas Tree PCB/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/tree.svg -------------------------------------------------------------------------------- /Christmas Tree PCB/white1.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/white1.dxf -------------------------------------------------------------------------------- /Christmas Tree PCB/white1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/white1.svg -------------------------------------------------------------------------------- /Christmas Tree PCB/white2.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/white2.dxf -------------------------------------------------------------------------------- /Christmas Tree PCB/white2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/white2.svg -------------------------------------------------------------------------------- /Christmas Tree PCB/white3.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/white3.dxf -------------------------------------------------------------------------------- /Christmas Tree PCB/white3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Christmas Tree PCB/white3.svg -------------------------------------------------------------------------------- /Encoded Motor Driver/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/.gitattributes -------------------------------------------------------------------------------- /Encoded Motor Driver/EncodedMotorController/EncodedMotorController.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EncodedMotorController/EncodedMotorController.ino -------------------------------------------------------------------------------- /Encoded Motor Driver/EncoderMotorDriver/EncoderMotorDriver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EncoderMotorDriver/EncoderMotorDriver.ino -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver-B.Cu.gbr -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver-B.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver-B.Mask.gbr -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver-B.SilkS.gbr -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver-Edge.Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver-Edge.Cuts.gbr -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver-F.Cu.gbr -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver-F.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver-F.Mask.gbr -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver-F.SilkS.gbr -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver.drl -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver.kicad_pcb -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver.kicad_pcb-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver.kicad_pcb-bak -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver.net -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver.pro -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver.sch -------------------------------------------------------------------------------- /Encoded Motor Driver/EnocderDriver/EnocderDriver.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/EnocderDriver/EnocderDriver.zip -------------------------------------------------------------------------------- /Encoded Motor Driver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/LICENSE -------------------------------------------------------------------------------- /Encoded Motor Driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Encoded Motor Driver/README.md -------------------------------------------------------------------------------- /Guitar Tuner/Code/guitar_tuner.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Guitar Tuner/Code/guitar_tuner.ino -------------------------------------------------------------------------------- /Guitar Tuner/PCB/guitar_tuner.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Guitar Tuner/PCB/guitar_tuner.brd -------------------------------------------------------------------------------- /Guitar Tuner/PCB/guitar_tuner.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Guitar Tuner/PCB/guitar_tuner.sch -------------------------------------------------------------------------------- /Guitar Tuner/PCB/pcb_gerber_files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Guitar Tuner/PCB/pcb_gerber_files.zip -------------------------------------------------------------------------------- /Guitar Tuner/Parts_List.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Guitar Tuner/Parts_List.xlsx -------------------------------------------------------------------------------- /RC Robot/blink_simple/blink_simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/RC Robot/blink_simple/blink_simple.ino -------------------------------------------------------------------------------- /RC Robot/rc_robot_with_arduino/rc_robot_with_arduino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/RC Robot/rc_robot_with_arduino/rc_robot_with_arduino.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/README.md -------------------------------------------------------------------------------- /Soldering Challenge/solderingtest.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Soldering Challenge/solderingtest.brd -------------------------------------------------------------------------------- /Soldering Challenge/solderingtest.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Soldering Challenge/solderingtest.sch -------------------------------------------------------------------------------- /Soldering Challenge/solderingtest_2020-11-26.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Soldering Challenge/solderingtest_2020-11-26.zip -------------------------------------------------------------------------------- /Sprint Race Timing System/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Sprint Race Timing System/.gitattributes -------------------------------------------------------------------------------- /Sprint Race Timing System/SprintRaceTimer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Sprint Race Timing System/SprintRaceTimer.ino -------------------------------------------------------------------------------- /Sprint Race Timing System/epd1in54.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Sprint Race Timing System/epd1in54.cpp -------------------------------------------------------------------------------- /Sprint Race Timing System/epd1in54.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Sprint Race Timing System/epd1in54.h -------------------------------------------------------------------------------- /Sprint Race Timing System/imagedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Sprint Race Timing System/imagedata.cpp -------------------------------------------------------------------------------- /Sprint Race Timing System/imagedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Sprint Race Timing System/imagedata.h -------------------------------------------------------------------------------- /Watering System/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Watering System/LICENSE -------------------------------------------------------------------------------- /Watering System/case_bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Watering System/case_bottom.stl -------------------------------------------------------------------------------- /Watering System/case_top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Watering System/case_top.stl -------------------------------------------------------------------------------- /Watering System/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Watering System/schematic.png -------------------------------------------------------------------------------- /Watering System/watering_system.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Small-Projects/HEAD/Watering System/watering_system.ino --------------------------------------------------------------------------------