├── .vscode ├── arduino.json └── c_cpp_properties.json ├── BOM.txt ├── Pictures ├── 20190723_202139.jpg ├── 20190723_202154.jpg ├── 20190723_202201.jpg ├── 20190723_202206.jpg ├── 20190723_202212.jpg ├── 20190723_202226.jpg ├── 20190723_202252.jpg ├── 20190723_202256.jpg ├── 20190803_131221.jpg ├── 20190803_132253.jpg ├── 20190803_132257.jpg ├── 20190806_172357.jpg ├── 20190806_172404.jpg └── 20190806_172607.jpg ├── README.md ├── STL ├── Anemometer-Lagerschale (1).stl ├── Anemometer-Lagerschale.stl ├── Anemometer-lower-part v16.stl ├── Anemometer-lower-part v17.stl ├── Anemometer-lower-part_v17.stl ├── Batteriefach.stl ├── Body7.stl ├── Platinenhalter.stl ├── Rain_Gauge_Cover.stl ├── Raingaube-lower-part.stl ├── Raingauge-Derb-Filter.stl ├── Raingauge-Pole-Clamp.stl ├── Raingauge-mount-plate.stl ├── Raingauge.stl ├── Raingauge_Basis.stl ├── Sensor-Mount.stl ├── Solar-Modul.stl ├── Stevenson-Screen-Boden.stl ├── Stevenson-Screen-Mittelteil.stl ├── Wetterstation-upper-part.stl ├── Windfahne-Balance1.stl ├── Windfahne-Balance2.stl ├── Windfahne-Deckel.stl ├── Windfahne-Haube.stl ├── Windfahne-Magnet.stl ├── Windfahne-Mast.stl ├── Windfahne-Paddel.stl ├── Windfahne-Stab.stl ├── Windfahne-unten (1).stl ├── Windfahne-unten.stl ├── schnitt.png ├── seite.png ├── station.png ├── unten.png └── vorne.png ├── Schematics ├── PCB │ ├── PCB │ ├── PCB-cache.lib │ ├── PCB.bak │ ├── PCB.kicad_pcb │ ├── PCB.pro │ ├── PCB.sch │ ├── PCB.xml │ ├── Schematics.pdf │ └── fp-info-cache ├── PCB_ESP32.pretty │ └── ESP32DevKit.kicad_mod └── PCB_ESP32 │ ├── ESP32-DEVKITV1.lbr │ ├── PCB │ ├── PCB-cache.lib │ ├── PCB.bak │ ├── PCB.kicad_pcb │ ├── PCB.kicad_pcb-bak │ ├── PCB.pro │ ├── PCB.sch │ ├── PCB.sch-bak │ ├── PCB.xml │ ├── Schematics.pdf │ ├── fp-info-cache │ └── fp-lib-table └── code ├── ATTINY ├── Battery │ └── Battery.ino ├── Wind-Speed │ └── Wind-Speed.ino └── Wind-vane │ ├── Wind-vane.ino │ └── WindVane_master │ ├── Battery.h │ ├── WindVane.h │ └── WindVane_master.ino ├── Arduino Mini ├── ESP8266WirelessWeatherReceiver │ ├── ESP8266WirelessWeatherReceiver.ino │ └── settings.h └── WirelessWeather │ ├── LowPower.cpp │ ├── LowPower.h │ ├── WindVane.h │ ├── WirelessWeather.ino │ └── settings.h ├── ESP32 ├── ESP32_WirelessWeather │ ├── ESP32_WirelessWeather.ino │ ├── WindVane.h │ ├── settings.h │ ├── ulp.s │ └── ulp_main.h └── README.md └── ESP8266 └── WirelessWeather ├── Battery.h ├── WindSpeed.h ├── WindVane.h ├── WirelessWeather.ino └── settings.h /.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/.vscode/arduino.json -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /BOM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/BOM.txt -------------------------------------------------------------------------------- /Pictures/20190723_202139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190723_202139.jpg -------------------------------------------------------------------------------- /Pictures/20190723_202154.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190723_202154.jpg -------------------------------------------------------------------------------- /Pictures/20190723_202201.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190723_202201.jpg -------------------------------------------------------------------------------- /Pictures/20190723_202206.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190723_202206.jpg -------------------------------------------------------------------------------- /Pictures/20190723_202212.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190723_202212.jpg -------------------------------------------------------------------------------- /Pictures/20190723_202226.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190723_202226.jpg -------------------------------------------------------------------------------- /Pictures/20190723_202252.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190723_202252.jpg -------------------------------------------------------------------------------- /Pictures/20190723_202256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190723_202256.jpg -------------------------------------------------------------------------------- /Pictures/20190803_131221.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190803_131221.jpg -------------------------------------------------------------------------------- /Pictures/20190803_132253.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190803_132253.jpg -------------------------------------------------------------------------------- /Pictures/20190803_132257.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190803_132257.jpg -------------------------------------------------------------------------------- /Pictures/20190806_172357.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190806_172357.jpg -------------------------------------------------------------------------------- /Pictures/20190806_172404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190806_172404.jpg -------------------------------------------------------------------------------- /Pictures/20190806_172607.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Pictures/20190806_172607.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/README.md -------------------------------------------------------------------------------- /STL/Anemometer-Lagerschale (1).stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Anemometer-Lagerschale (1).stl -------------------------------------------------------------------------------- /STL/Anemometer-Lagerschale.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Anemometer-Lagerschale.stl -------------------------------------------------------------------------------- /STL/Anemometer-lower-part v16.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Anemometer-lower-part v16.stl -------------------------------------------------------------------------------- /STL/Anemometer-lower-part v17.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Anemometer-lower-part v17.stl -------------------------------------------------------------------------------- /STL/Anemometer-lower-part_v17.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Anemometer-lower-part_v17.stl -------------------------------------------------------------------------------- /STL/Batteriefach.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Batteriefach.stl -------------------------------------------------------------------------------- /STL/Body7.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Body7.stl -------------------------------------------------------------------------------- /STL/Platinenhalter.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Platinenhalter.stl -------------------------------------------------------------------------------- /STL/Rain_Gauge_Cover.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Rain_Gauge_Cover.stl -------------------------------------------------------------------------------- /STL/Raingaube-lower-part.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Raingaube-lower-part.stl -------------------------------------------------------------------------------- /STL/Raingauge-Derb-Filter.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Raingauge-Derb-Filter.stl -------------------------------------------------------------------------------- /STL/Raingauge-Pole-Clamp.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Raingauge-Pole-Clamp.stl -------------------------------------------------------------------------------- /STL/Raingauge-mount-plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Raingauge-mount-plate.stl -------------------------------------------------------------------------------- /STL/Raingauge.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Raingauge.stl -------------------------------------------------------------------------------- /STL/Raingauge_Basis.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Raingauge_Basis.stl -------------------------------------------------------------------------------- /STL/Sensor-Mount.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Sensor-Mount.stl -------------------------------------------------------------------------------- /STL/Solar-Modul.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Solar-Modul.stl -------------------------------------------------------------------------------- /STL/Stevenson-Screen-Boden.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Stevenson-Screen-Boden.stl -------------------------------------------------------------------------------- /STL/Stevenson-Screen-Mittelteil.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Stevenson-Screen-Mittelteil.stl -------------------------------------------------------------------------------- /STL/Wetterstation-upper-part.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Wetterstation-upper-part.stl -------------------------------------------------------------------------------- /STL/Windfahne-Balance1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Windfahne-Balance1.stl -------------------------------------------------------------------------------- /STL/Windfahne-Balance2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Windfahne-Balance2.stl -------------------------------------------------------------------------------- /STL/Windfahne-Deckel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Windfahne-Deckel.stl -------------------------------------------------------------------------------- /STL/Windfahne-Haube.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Windfahne-Haube.stl -------------------------------------------------------------------------------- /STL/Windfahne-Magnet.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Windfahne-Magnet.stl -------------------------------------------------------------------------------- /STL/Windfahne-Mast.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Windfahne-Mast.stl -------------------------------------------------------------------------------- /STL/Windfahne-Paddel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Windfahne-Paddel.stl -------------------------------------------------------------------------------- /STL/Windfahne-Stab.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Windfahne-Stab.stl -------------------------------------------------------------------------------- /STL/Windfahne-unten (1).stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Windfahne-unten (1).stl -------------------------------------------------------------------------------- /STL/Windfahne-unten.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/Windfahne-unten.stl -------------------------------------------------------------------------------- /STL/schnitt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/schnitt.png -------------------------------------------------------------------------------- /STL/seite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/seite.png -------------------------------------------------------------------------------- /STL/station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/station.png -------------------------------------------------------------------------------- /STL/unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/unten.png -------------------------------------------------------------------------------- /STL/vorne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/STL/vorne.png -------------------------------------------------------------------------------- /Schematics/PCB/PCB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB/PCB -------------------------------------------------------------------------------- /Schematics/PCB/PCB-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB/PCB-cache.lib -------------------------------------------------------------------------------- /Schematics/PCB/PCB.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB/PCB.bak -------------------------------------------------------------------------------- /Schematics/PCB/PCB.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB/PCB.kicad_pcb -------------------------------------------------------------------------------- /Schematics/PCB/PCB.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB/PCB.pro -------------------------------------------------------------------------------- /Schematics/PCB/PCB.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB/PCB.sch -------------------------------------------------------------------------------- /Schematics/PCB/PCB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB/PCB.xml -------------------------------------------------------------------------------- /Schematics/PCB/Schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB/Schematics.pdf -------------------------------------------------------------------------------- /Schematics/PCB/fp-info-cache: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Schematics/PCB_ESP32.pretty/ESP32DevKit.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32.pretty/ESP32DevKit.kicad_mod -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/ESP32-DEVKITV1.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/ESP32-DEVKITV1.lbr -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/PCB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/PCB -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/PCB-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/PCB-cache.lib -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/PCB.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/PCB.bak -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/PCB.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/PCB.kicad_pcb -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/PCB.kicad_pcb-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/PCB.kicad_pcb-bak -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/PCB.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/PCB.pro -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/PCB.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/PCB.sch -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/PCB.sch-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/PCB.sch-bak -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/PCB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/PCB.xml -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/Schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/Schematics.pdf -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/fp-info-cache -------------------------------------------------------------------------------- /Schematics/PCB_ESP32/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/Schematics/PCB_ESP32/fp-lib-table -------------------------------------------------------------------------------- /code/ATTINY/Battery/Battery.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ATTINY/Battery/Battery.ino -------------------------------------------------------------------------------- /code/ATTINY/Wind-Speed/Wind-Speed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ATTINY/Wind-Speed/Wind-Speed.ino -------------------------------------------------------------------------------- /code/ATTINY/Wind-vane/Wind-vane.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ATTINY/Wind-vane/Wind-vane.ino -------------------------------------------------------------------------------- /code/ATTINY/Wind-vane/WindVane_master/Battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ATTINY/Wind-vane/WindVane_master/Battery.h -------------------------------------------------------------------------------- /code/ATTINY/Wind-vane/WindVane_master/WindVane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ATTINY/Wind-vane/WindVane_master/WindVane.h -------------------------------------------------------------------------------- /code/ATTINY/Wind-vane/WindVane_master/WindVane_master.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ATTINY/Wind-vane/WindVane_master/WindVane_master.ino -------------------------------------------------------------------------------- /code/Arduino Mini/ESP8266WirelessWeatherReceiver/ESP8266WirelessWeatherReceiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/Arduino Mini/ESP8266WirelessWeatherReceiver/ESP8266WirelessWeatherReceiver.ino -------------------------------------------------------------------------------- /code/Arduino Mini/ESP8266WirelessWeatherReceiver/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/Arduino Mini/ESP8266WirelessWeatherReceiver/settings.h -------------------------------------------------------------------------------- /code/Arduino Mini/WirelessWeather/LowPower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/Arduino Mini/WirelessWeather/LowPower.cpp -------------------------------------------------------------------------------- /code/Arduino Mini/WirelessWeather/LowPower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/Arduino Mini/WirelessWeather/LowPower.h -------------------------------------------------------------------------------- /code/Arduino Mini/WirelessWeather/WindVane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/Arduino Mini/WirelessWeather/WindVane.h -------------------------------------------------------------------------------- /code/Arduino Mini/WirelessWeather/WirelessWeather.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/Arduino Mini/WirelessWeather/WirelessWeather.ino -------------------------------------------------------------------------------- /code/Arduino Mini/WirelessWeather/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/Arduino Mini/WirelessWeather/settings.h -------------------------------------------------------------------------------- /code/ESP32/ESP32_WirelessWeather/ESP32_WirelessWeather.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ESP32/ESP32_WirelessWeather/ESP32_WirelessWeather.ino -------------------------------------------------------------------------------- /code/ESP32/ESP32_WirelessWeather/WindVane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ESP32/ESP32_WirelessWeather/WindVane.h -------------------------------------------------------------------------------- /code/ESP32/ESP32_WirelessWeather/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ESP32/ESP32_WirelessWeather/settings.h -------------------------------------------------------------------------------- /code/ESP32/ESP32_WirelessWeather/ulp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ESP32/ESP32_WirelessWeather/ulp.s -------------------------------------------------------------------------------- /code/ESP32/ESP32_WirelessWeather/ulp_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ESP32/ESP32_WirelessWeather/ulp_main.h -------------------------------------------------------------------------------- /code/ESP32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ESP32/README.md -------------------------------------------------------------------------------- /code/ESP8266/WirelessWeather/Battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ESP8266/WirelessWeather/Battery.h -------------------------------------------------------------------------------- /code/ESP8266/WirelessWeather/WindSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ESP8266/WirelessWeather/WindSpeed.h -------------------------------------------------------------------------------- /code/ESP8266/WirelessWeather/WindVane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ESP8266/WirelessWeather/WindVane.h -------------------------------------------------------------------------------- /code/ESP8266/WirelessWeather/WirelessWeather.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ESP8266/WirelessWeather/WirelessWeather.ino -------------------------------------------------------------------------------- /code/ESP8266/WirelessWeather/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddyCube/WirelessWeather/HEAD/code/ESP8266/WirelessWeather/settings.h --------------------------------------------------------------------------------