├── .gitignore ├── .gitmodules ├── Contrib ├── CCU │ ├── HB-UW-Sen-THPL_CCU-addon-src │ │ ├── firmware │ │ │ └── rftypes │ │ │ │ ├── hb_uw_sen_thpl.xml │ │ │ │ └── hb_uw_sen_thpl_le_v0_11.xml │ │ ├── update_script │ │ └── www │ │ │ └── config │ │ │ └── img │ │ │ └── devices │ │ │ ├── 50 │ │ │ ├── hb-uw-sen-thpl-i_thumb.png │ │ │ └── hb-uw-sen-thpl-o_thumb.png │ │ │ └── 250 │ │ │ ├── hb-uw-sen-thpl-i.png │ │ │ └── hb-uw-sen-thpl-o.png │ ├── HB-UW-Sen-THPL_CCU-addon.tgz │ └── build.sh ├── FHEM │ └── HMConfig_SenTHPL.pm ├── HB-UW-Sen-THPL_update_V0_13_000_141008.eq3 ├── HB-UW-Sen-THPL_update_V0_14_001_150301.eq3 ├── build-tool.sh ├── control-fhem.txt ├── flash-ota.sh └── hex2eq3.php ├── Firmware-Release ├── HB-UW-Sen-THPL_update_V0_14_001_150301-I.tgz ├── HB-UW-Sen-THPL_update_V0_14_001_150301-O.tgz ├── HB-UW-Sen-THPL_update_V0_14_001_150301.eq3 ├── HB-UW-Sen-THPL_update_V0_14_001_150301.hex ├── HB-UW-Sen-THPL_update_V0_15_000_150303-I.tgz ├── HB-UW-Sen-THPL_update_V0_15_000_150303-O.tgz ├── HB-UW-Sen-THPL_update_V0_15_000_150303.eq3 └── HB-UW-Sen-THPL_update_V0_15_000_150303.hex ├── Firmware-Src ├── Libraries │ ├── BMP085 │ │ ├── BMP085.cpp │ │ ├── BMP085.h │ │ ├── BMP085.jpg │ │ ├── README.txt │ │ └── example │ │ │ ├── BMP085test - Kopie.html │ │ │ └── BMP085test.pde │ ├── Sensirion │ │ ├── README.txt │ │ ├── Sensirion.cpp │ │ ├── Sensirion.h │ │ ├── examples │ │ │ ├── NonBlocking │ │ │ │ └── NonBlocking.pde │ │ │ └── SimpleSensirion │ │ │ │ └── SimpleSensirion.pde │ │ └── keywords.txt │ ├── TSL2561 │ │ ├── TSL2561.cpp │ │ ├── TSL2561.h │ │ ├── examples │ │ │ └── SFE_TSL2561_example │ │ │ │ └── SFE_TSL2561_example.ino │ │ └── keywords.txt │ └── Wire │ │ ├── Wire.cpp │ │ ├── Wire.h │ │ ├── examples │ │ ├── SFRRanger_reader │ │ │ └── SFRRanger_reader.ino │ │ ├── digital_potentiometer │ │ │ └── digital_potentiometer.ino │ │ ├── master_reader │ │ │ └── master_reader.ino │ │ ├── master_writer │ │ │ └── master_writer.ino │ │ ├── slave_receiver │ │ │ └── slave_receiver.ino │ │ └── slave_sender │ │ │ └── slave_sender.ino │ │ ├── keywords.txt │ │ └── utility │ │ ├── twi.c │ │ └── twi.h ├── README.md ├── Register.h ├── WetterSensor.h ├── WetterSensor.ino └── ccu-changelog.txt ├── Images ├── CC1101-Sensor Firmwareupdate mit dem Raspberry Pi.jpg ├── CC1101-Sensor-Außen Platine_1.jpg ├── HB-UW-Sen-THPL-O.jpg ├── HB-UW-Sen-THPL-O_Overview_Rev_1.0.jpg ├── HB-UW-Sen-THPL-O_filter_foil.JPG └── HB-UW-Sen-THPL-drill_dimension.jpg ├── README.md └── Schematic ├── SHT10-Adapter.brd ├── SHT10-Adapter.sch ├── Schematic-RF.pdf ├── Universal-Sensor_Atmega328.brd ├── Universal-Sensor_Atmega328.sch ├── Wetter-Sensor_Atmega328 Out 1.1.brd └── Wetter-Sensor_Atmega328 Out 1.1.sch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/.gitmodules -------------------------------------------------------------------------------- /Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/firmware/rftypes/hb_uw_sen_thpl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/firmware/rftypes/hb_uw_sen_thpl.xml -------------------------------------------------------------------------------- /Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/firmware/rftypes/hb_uw_sen_thpl_le_v0_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/firmware/rftypes/hb_uw_sen_thpl_le_v0_11.xml -------------------------------------------------------------------------------- /Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/update_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/update_script -------------------------------------------------------------------------------- /Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/www/config/img/devices/250/hb-uw-sen-thpl-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/www/config/img/devices/250/hb-uw-sen-thpl-i.png -------------------------------------------------------------------------------- /Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/www/config/img/devices/250/hb-uw-sen-thpl-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/www/config/img/devices/250/hb-uw-sen-thpl-o.png -------------------------------------------------------------------------------- /Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/www/config/img/devices/50/hb-uw-sen-thpl-i_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/www/config/img/devices/50/hb-uw-sen-thpl-i_thumb.png -------------------------------------------------------------------------------- /Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/www/config/img/devices/50/hb-uw-sen-thpl-o_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/CCU/HB-UW-Sen-THPL_CCU-addon-src/www/config/img/devices/50/hb-uw-sen-thpl-o_thumb.png -------------------------------------------------------------------------------- /Contrib/CCU/HB-UW-Sen-THPL_CCU-addon.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/CCU/HB-UW-Sen-THPL_CCU-addon.tgz -------------------------------------------------------------------------------- /Contrib/CCU/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/CCU/build.sh -------------------------------------------------------------------------------- /Contrib/FHEM/HMConfig_SenTHPL.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/FHEM/HMConfig_SenTHPL.pm -------------------------------------------------------------------------------- /Contrib/HB-UW-Sen-THPL_update_V0_13_000_141008.eq3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/HB-UW-Sen-THPL_update_V0_13_000_141008.eq3 -------------------------------------------------------------------------------- /Contrib/HB-UW-Sen-THPL_update_V0_14_001_150301.eq3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/HB-UW-Sen-THPL_update_V0_14_001_150301.eq3 -------------------------------------------------------------------------------- /Contrib/build-tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/build-tool.sh -------------------------------------------------------------------------------- /Contrib/control-fhem.txt: -------------------------------------------------------------------------------- 1 | UPD 2015-04-27_20:35:00 3409 FHEM/HMConfig_SenTHPL.pm -------------------------------------------------------------------------------- /Contrib/flash-ota.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/flash-ota.sh -------------------------------------------------------------------------------- /Contrib/hex2eq3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Contrib/hex2eq3.php -------------------------------------------------------------------------------- /Firmware-Release/HB-UW-Sen-THPL_update_V0_14_001_150301-I.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Release/HB-UW-Sen-THPL_update_V0_14_001_150301-I.tgz -------------------------------------------------------------------------------- /Firmware-Release/HB-UW-Sen-THPL_update_V0_14_001_150301-O.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Release/HB-UW-Sen-THPL_update_V0_14_001_150301-O.tgz -------------------------------------------------------------------------------- /Firmware-Release/HB-UW-Sen-THPL_update_V0_14_001_150301.eq3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Release/HB-UW-Sen-THPL_update_V0_14_001_150301.eq3 -------------------------------------------------------------------------------- /Firmware-Release/HB-UW-Sen-THPL_update_V0_14_001_150301.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Release/HB-UW-Sen-THPL_update_V0_14_001_150301.hex -------------------------------------------------------------------------------- /Firmware-Release/HB-UW-Sen-THPL_update_V0_15_000_150303-I.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Release/HB-UW-Sen-THPL_update_V0_15_000_150303-I.tgz -------------------------------------------------------------------------------- /Firmware-Release/HB-UW-Sen-THPL_update_V0_15_000_150303-O.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Release/HB-UW-Sen-THPL_update_V0_15_000_150303-O.tgz -------------------------------------------------------------------------------- /Firmware-Release/HB-UW-Sen-THPL_update_V0_15_000_150303.eq3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Release/HB-UW-Sen-THPL_update_V0_15_000_150303.eq3 -------------------------------------------------------------------------------- /Firmware-Release/HB-UW-Sen-THPL_update_V0_15_000_150303.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Release/HB-UW-Sen-THPL_update_V0_15_000_150303.hex -------------------------------------------------------------------------------- /Firmware-Src/Libraries/BMP085/BMP085.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/BMP085/BMP085.cpp -------------------------------------------------------------------------------- /Firmware-Src/Libraries/BMP085/BMP085.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/BMP085/BMP085.h -------------------------------------------------------------------------------- /Firmware-Src/Libraries/BMP085/BMP085.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/BMP085/BMP085.jpg -------------------------------------------------------------------------------- /Firmware-Src/Libraries/BMP085/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/BMP085/README.txt -------------------------------------------------------------------------------- /Firmware-Src/Libraries/BMP085/example/BMP085test - Kopie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/BMP085/example/BMP085test - Kopie.html -------------------------------------------------------------------------------- /Firmware-Src/Libraries/BMP085/example/BMP085test.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/BMP085/example/BMP085test.pde -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Sensirion/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Sensirion/README.txt -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Sensirion/Sensirion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Sensirion/Sensirion.cpp -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Sensirion/Sensirion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Sensirion/Sensirion.h -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Sensirion/examples/NonBlocking/NonBlocking.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Sensirion/examples/NonBlocking/NonBlocking.pde -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Sensirion/examples/SimpleSensirion/SimpleSensirion.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Sensirion/examples/SimpleSensirion/SimpleSensirion.pde -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Sensirion/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Sensirion/keywords.txt -------------------------------------------------------------------------------- /Firmware-Src/Libraries/TSL2561/TSL2561.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/TSL2561/TSL2561.cpp -------------------------------------------------------------------------------- /Firmware-Src/Libraries/TSL2561/TSL2561.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/TSL2561/TSL2561.h -------------------------------------------------------------------------------- /Firmware-Src/Libraries/TSL2561/examples/SFE_TSL2561_example/SFE_TSL2561_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/TSL2561/examples/SFE_TSL2561_example/SFE_TSL2561_example.ino -------------------------------------------------------------------------------- /Firmware-Src/Libraries/TSL2561/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/TSL2561/keywords.txt -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Wire/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Wire/Wire.cpp -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Wire/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Wire/Wire.h -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Wire/examples/master_reader/master_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Wire/examples/master_reader/master_reader.ino -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Wire/examples/master_writer/master_writer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Wire/examples/master_writer/master_writer.ino -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Wire/examples/slave_receiver/slave_receiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Wire/examples/slave_receiver/slave_receiver.ino -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Wire/examples/slave_sender/slave_sender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Wire/examples/slave_sender/slave_sender.ino -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Wire/utility/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Wire/utility/twi.c -------------------------------------------------------------------------------- /Firmware-Src/Libraries/Wire/utility/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Libraries/Wire/utility/twi.h -------------------------------------------------------------------------------- /Firmware-Src/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /Firmware-Src/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/Register.h -------------------------------------------------------------------------------- /Firmware-Src/WetterSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/WetterSensor.h -------------------------------------------------------------------------------- /Firmware-Src/WetterSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/WetterSensor.ino -------------------------------------------------------------------------------- /Firmware-Src/ccu-changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Firmware-Src/ccu-changelog.txt -------------------------------------------------------------------------------- /Images/CC1101-Sensor Firmwareupdate mit dem Raspberry Pi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Images/CC1101-Sensor Firmwareupdate mit dem Raspberry Pi.jpg -------------------------------------------------------------------------------- /Images/CC1101-Sensor-Außen Platine_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Images/CC1101-Sensor-Außen Platine_1.jpg -------------------------------------------------------------------------------- /Images/HB-UW-Sen-THPL-O.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Images/HB-UW-Sen-THPL-O.jpg -------------------------------------------------------------------------------- /Images/HB-UW-Sen-THPL-O_Overview_Rev_1.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Images/HB-UW-Sen-THPL-O_Overview_Rev_1.0.jpg -------------------------------------------------------------------------------- /Images/HB-UW-Sen-THPL-O_filter_foil.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Images/HB-UW-Sen-THPL-O_filter_foil.JPG -------------------------------------------------------------------------------- /Images/HB-UW-Sen-THPL-drill_dimension.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Images/HB-UW-Sen-THPL-drill_dimension.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/README.md -------------------------------------------------------------------------------- /Schematic/SHT10-Adapter.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Schematic/SHT10-Adapter.brd -------------------------------------------------------------------------------- /Schematic/SHT10-Adapter.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Schematic/SHT10-Adapter.sch -------------------------------------------------------------------------------- /Schematic/Schematic-RF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Schematic/Schematic-RF.pdf -------------------------------------------------------------------------------- /Schematic/Universal-Sensor_Atmega328.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Schematic/Universal-Sensor_Atmega328.brd -------------------------------------------------------------------------------- /Schematic/Universal-Sensor_Atmega328.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Schematic/Universal-Sensor_Atmega328.sch -------------------------------------------------------------------------------- /Schematic/Wetter-Sensor_Atmega328 Out 1.1.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Schematic/Wetter-Sensor_Atmega328 Out 1.1.brd -------------------------------------------------------------------------------- /Schematic/Wetter-Sensor_Atmega328 Out 1.1.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kc-GitHub/Wettersensor/HEAD/Schematic/Wetter-Sensor_Atmega328 Out 1.1.sch --------------------------------------------------------------------------------