├── .gitattributes ├── .gitignore ├── LowPowerPIR_Breakout ├── CHANGES.txt ├── COPYRIGHT.txt ├── LICENSE.txt ├── PRODUCT.txt ├── README.md ├── img │ ├── 3dview.png │ ├── bottom.png │ └── top.png ├── license │ └── cern_ohl_v_1_2_howto.pdf ├── pir_breakout.brd ├── pir_breakout.sch ├── pir_breakout_bom.pdf └── schematic.png ├── MySensorsATSHA_EEprom ├── BOM.pdf ├── MysensorsATSHA_EEprom.brd ├── MysensorsATSHA_EEprom.sch ├── README.md ├── schematic.png └── screenshot.png ├── README.md └── RollerShutterNode ├── BOM └── MyRollerShutter_rfm_1-3.pdf ├── CHANGES.txt ├── COPYRIGHT.txt ├── Eagle ├── NRF24_SMD │ ├── MyRollerShutter_nrf_1-3a.brd │ └── MyRollerShutter_nrf_1-3a.sch └── RFM69CW │ ├── MyRollerShutter_rfm_1-3.brd │ └── MyRollerShutter_rfm_1-3.sch ├── FW └── MyRollershutter │ ├── MyNodeDefinition.h │ ├── MyRollershutter.ino │ ├── shutterSM.cpp │ └── shutterSM.h ├── Gerbers ├── NRF24_SMD │ ├── MyRollerShutter_nrf_1-3a.GBL │ ├── MyRollerShutter_nrf_1-3a.GBO │ ├── MyRollerShutter_nrf_1-3a.GBS │ ├── MyRollerShutter_nrf_1-3a.GML │ ├── MyRollerShutter_nrf_1-3a.GTL │ ├── MyRollerShutter_nrf_1-3a.GTO │ ├── MyRollerShutter_nrf_1-3a.GTS │ ├── MyRollerShutter_nrf_1-3a.TXT │ └── MyRollerShutter_nrf_1-3a_gerbers.rar └── RFM69CW │ ├── MyRollerShutter_rfm_1-3.GBL │ ├── MyRollerShutter_rfm_1-3.GBO │ ├── MyRollerShutter_rfm_1-3.GBS │ ├── MyRollerShutter_rfm_1-3.GML │ ├── MyRollerShutter_rfm_1-3.GTL │ ├── MyRollerShutter_rfm_1-3.GTO │ ├── MyRollerShutter_rfm_1-3.GTS │ ├── MyRollerShutter_rfm_1-3.TXT │ └── MyRollerShutter_rfm_1-3_gerbers.rar ├── LICENSE.txt ├── PRODUCT.txt ├── README.md ├── img ├── Rollershutter13.jpg ├── acs_calibration_data.png ├── bottom.jpg ├── load_calibration_tool_for_fun.jpg ├── pcb_img1.png ├── rollershutternode_sch.png ├── top.jpg └── top_with_ftdi.jpg └── license └── cern_ohl_v_1_2_howto.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/.gitignore -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/CHANGES.txt -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/COPYRIGHT.txt -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/LICENSE.txt -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/PRODUCT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/PRODUCT.txt -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/README.md -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/img/3dview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/img/3dview.png -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/img/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/img/bottom.png -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/img/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/img/top.png -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/license/cern_ohl_v_1_2_howto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/license/cern_ohl_v_1_2_howto.pdf -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/pir_breakout.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/pir_breakout.brd -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/pir_breakout.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/pir_breakout.sch -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/pir_breakout_bom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/pir_breakout_bom.pdf -------------------------------------------------------------------------------- /LowPowerPIR_Breakout/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/LowPowerPIR_Breakout/schematic.png -------------------------------------------------------------------------------- /MySensorsATSHA_EEprom/BOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/MySensorsATSHA_EEprom/BOM.pdf -------------------------------------------------------------------------------- /MySensorsATSHA_EEprom/MysensorsATSHA_EEprom.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/MySensorsATSHA_EEprom/MysensorsATSHA_EEprom.brd -------------------------------------------------------------------------------- /MySensorsATSHA_EEprom/MysensorsATSHA_EEprom.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/MySensorsATSHA_EEprom/MysensorsATSHA_EEprom.sch -------------------------------------------------------------------------------- /MySensorsATSHA_EEprom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/MySensorsATSHA_EEprom/README.md -------------------------------------------------------------------------------- /MySensorsATSHA_EEprom/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/MySensorsATSHA_EEprom/schematic.png -------------------------------------------------------------------------------- /MySensorsATSHA_EEprom/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/MySensorsATSHA_EEprom/screenshot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/README.md -------------------------------------------------------------------------------- /RollerShutterNode/BOM/MyRollerShutter_rfm_1-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/BOM/MyRollerShutter_rfm_1-3.pdf -------------------------------------------------------------------------------- /RollerShutterNode/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/CHANGES.txt -------------------------------------------------------------------------------- /RollerShutterNode/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/COPYRIGHT.txt -------------------------------------------------------------------------------- /RollerShutterNode/Eagle/NRF24_SMD/MyRollerShutter_nrf_1-3a.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Eagle/NRF24_SMD/MyRollerShutter_nrf_1-3a.brd -------------------------------------------------------------------------------- /RollerShutterNode/Eagle/NRF24_SMD/MyRollerShutter_nrf_1-3a.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Eagle/NRF24_SMD/MyRollerShutter_nrf_1-3a.sch -------------------------------------------------------------------------------- /RollerShutterNode/Eagle/RFM69CW/MyRollerShutter_rfm_1-3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Eagle/RFM69CW/MyRollerShutter_rfm_1-3.brd -------------------------------------------------------------------------------- /RollerShutterNode/Eagle/RFM69CW/MyRollerShutter_rfm_1-3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Eagle/RFM69CW/MyRollerShutter_rfm_1-3.sch -------------------------------------------------------------------------------- /RollerShutterNode/FW/MyRollershutter/MyNodeDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/FW/MyRollershutter/MyNodeDefinition.h -------------------------------------------------------------------------------- /RollerShutterNode/FW/MyRollershutter/MyRollershutter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/FW/MyRollershutter/MyRollershutter.ino -------------------------------------------------------------------------------- /RollerShutterNode/FW/MyRollershutter/shutterSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/FW/MyRollershutter/shutterSM.cpp -------------------------------------------------------------------------------- /RollerShutterNode/FW/MyRollershutter/shutterSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/FW/MyRollershutter/shutterSM.h -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GBL -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GBO -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GBS -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GML -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GTL -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GTO -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.GTS -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a.TXT -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a_gerbers.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/NRF24_SMD/MyRollerShutter_nrf_1-3a_gerbers.rar -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GBL -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GBO -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GBS -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GML -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GTL -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GTO -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.GTS -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3.TXT -------------------------------------------------------------------------------- /RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3_gerbers.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/Gerbers/RFM69CW/MyRollerShutter_rfm_1-3_gerbers.rar -------------------------------------------------------------------------------- /RollerShutterNode/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/LICENSE.txt -------------------------------------------------------------------------------- /RollerShutterNode/PRODUCT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/PRODUCT.txt -------------------------------------------------------------------------------- /RollerShutterNode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/README.md -------------------------------------------------------------------------------- /RollerShutterNode/img/Rollershutter13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/img/Rollershutter13.jpg -------------------------------------------------------------------------------- /RollerShutterNode/img/acs_calibration_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/img/acs_calibration_data.png -------------------------------------------------------------------------------- /RollerShutterNode/img/bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/img/bottom.jpg -------------------------------------------------------------------------------- /RollerShutterNode/img/load_calibration_tool_for_fun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/img/load_calibration_tool_for_fun.jpg -------------------------------------------------------------------------------- /RollerShutterNode/img/pcb_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/img/pcb_img1.png -------------------------------------------------------------------------------- /RollerShutterNode/img/rollershutternode_sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/img/rollershutternode_sch.png -------------------------------------------------------------------------------- /RollerShutterNode/img/top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/img/top.jpg -------------------------------------------------------------------------------- /RollerShutterNode/img/top_with_ftdi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/img/top_with_ftdi.jpg -------------------------------------------------------------------------------- /RollerShutterNode/license/cern_ohl_v_1_2_howto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalz/MySensors-HW/HEAD/RollerShutterNode/license/cern_ohl_v_1_2_howto.pdf --------------------------------------------------------------------------------