├── .gitattributes ├── .gitignore ├── 0_Documentation └── bauanleitung.md ├── 1_Hardware ├── BOM.xlsx ├── Enclosure │ ├── Enclosure_PART-A.stl │ └── Enclosure_PART-B.stl ├── PCB │ ├── Gerber_LCD-v21.zip │ ├── pdf_Mainboard-LCDV2.pdf │ ├── pdf_Mainboard-LCDV21.pdf │ ├── pdf_Mainboard-LCDV21_colorized.pdf │ └── source files │ │ ├── 3dModel.zip │ │ ├── altium_LCD-v2.pcbdoc │ │ └── easyeda_LCD-v2.json └── Pictures │ ├── Arduino-IDE.jpg │ ├── Arduino-IDE_Serial.jpg │ ├── PartA-PrusaSlicer.jpg │ ├── PartB-PrusaSlicer.jpg │ ├── assembled_noScrews.jpg │ ├── button.jpg │ ├── completed.jpg │ ├── done.jpg │ ├── firsttest.jpg │ ├── foot.jpg │ ├── fullyassembled.jpg │ ├── pcb_bottom.jpg │ ├── pcb_enclosure1.jpg │ ├── pcb_enclosure2.jpg │ ├── pcb_lcd.jpg │ └── screwing.jpg ├── 2_Software ├── Arduino │ └── main │ │ ├── I2C_Chars.ino │ │ ├── LCD_Messages.ino │ │ └── main.ino └── Tests │ ├── I2C_Display_Hello-World │ └── I2C_Display_Hello-World.ino │ ├── I2C_Progressbar │ └── I2C_Progressbar.ino │ ├── MQ135-Test │ └── MQ135-Test.ino │ ├── PCB-LED_Test │ └── PCB-LED_Test.ino │ └── tonegenerator │ └── tonegenerator.ino ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/.gitignore -------------------------------------------------------------------------------- /0_Documentation/bauanleitung.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/0_Documentation/bauanleitung.md -------------------------------------------------------------------------------- /1_Hardware/BOM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/BOM.xlsx -------------------------------------------------------------------------------- /1_Hardware/Enclosure/Enclosure_PART-A.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Enclosure/Enclosure_PART-A.stl -------------------------------------------------------------------------------- /1_Hardware/Enclosure/Enclosure_PART-B.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Enclosure/Enclosure_PART-B.stl -------------------------------------------------------------------------------- /1_Hardware/PCB/Gerber_LCD-v21.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/PCB/Gerber_LCD-v21.zip -------------------------------------------------------------------------------- /1_Hardware/PCB/pdf_Mainboard-LCDV2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/PCB/pdf_Mainboard-LCDV2.pdf -------------------------------------------------------------------------------- /1_Hardware/PCB/pdf_Mainboard-LCDV21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/PCB/pdf_Mainboard-LCDV21.pdf -------------------------------------------------------------------------------- /1_Hardware/PCB/pdf_Mainboard-LCDV21_colorized.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/PCB/pdf_Mainboard-LCDV21_colorized.pdf -------------------------------------------------------------------------------- /1_Hardware/PCB/source files/3dModel.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/PCB/source files/3dModel.zip -------------------------------------------------------------------------------- /1_Hardware/PCB/source files/altium_LCD-v2.pcbdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/PCB/source files/altium_LCD-v2.pcbdoc -------------------------------------------------------------------------------- /1_Hardware/PCB/source files/easyeda_LCD-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/PCB/source files/easyeda_LCD-v2.json -------------------------------------------------------------------------------- /1_Hardware/Pictures/Arduino-IDE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/Arduino-IDE.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/Arduino-IDE_Serial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/Arduino-IDE_Serial.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/PartA-PrusaSlicer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/PartA-PrusaSlicer.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/PartB-PrusaSlicer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/PartB-PrusaSlicer.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/assembled_noScrews.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/assembled_noScrews.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/button.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/completed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/completed.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/done.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/done.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/firsttest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/firsttest.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/foot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/foot.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/fullyassembled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/fullyassembled.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/pcb_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/pcb_bottom.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/pcb_enclosure1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/pcb_enclosure1.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/pcb_enclosure2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/pcb_enclosure2.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/pcb_lcd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/pcb_lcd.jpg -------------------------------------------------------------------------------- /1_Hardware/Pictures/screwing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/1_Hardware/Pictures/screwing.jpg -------------------------------------------------------------------------------- /2_Software/Arduino/main/I2C_Chars.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/2_Software/Arduino/main/I2C_Chars.ino -------------------------------------------------------------------------------- /2_Software/Arduino/main/LCD_Messages.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/2_Software/Arduino/main/LCD_Messages.ino -------------------------------------------------------------------------------- /2_Software/Arduino/main/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/2_Software/Arduino/main/main.ino -------------------------------------------------------------------------------- /2_Software/Tests/I2C_Display_Hello-World/I2C_Display_Hello-World.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/2_Software/Tests/I2C_Display_Hello-World/I2C_Display_Hello-World.ino -------------------------------------------------------------------------------- /2_Software/Tests/I2C_Progressbar/I2C_Progressbar.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/2_Software/Tests/I2C_Progressbar/I2C_Progressbar.ino -------------------------------------------------------------------------------- /2_Software/Tests/MQ135-Test/MQ135-Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/2_Software/Tests/MQ135-Test/MQ135-Test.ino -------------------------------------------------------------------------------- /2_Software/Tests/PCB-LED_Test/PCB-LED_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/2_Software/Tests/PCB-LED_Test/PCB-LED_Test.ino -------------------------------------------------------------------------------- /2_Software/Tests/tonegenerator/tonegenerator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/2_Software/Tests/tonegenerator/tonegenerator.ino -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulGoldschmidt/OSAMD/HEAD/README.md --------------------------------------------------------------------------------