├── .gitignore ├── Enclosures ├── DIN Rail Pin.stl ├── GoWired DIN Rail Case bottom.stl ├── GoWired DIN Rail Case top.stl ├── GoWired In-wall Case.stl ├── In-Wall-to-DIN_bot.stl ├── In-Wall-to-DIN_top.stl └── readme.md ├── Hardware ├── GoWired Adapter │ ├── Assembly │ │ └── BOM GoWired Adapter v1.csv │ ├── DrillFiles │ │ └── drills.xln │ ├── GerberFiles │ │ ├── copper_bottom.gbr │ │ ├── copper_top.gbr │ │ ├── gerber_job.gbrjob │ │ ├── profile.gbr │ │ ├── silkscreen_bottom.gbr │ │ ├── silkscreen_top.gbr │ │ ├── soldermask_bottom.gbr │ │ ├── soldermask_top.gbr │ │ ├── solderpaste_bottom.gbr │ │ └── solderpaste_top.gbr │ └── readme.md ├── GoWired MCU v1.0 │ ├── GoWired MCU v1.0.brd │ ├── GoWired MCU v1.0.pdf │ └── GoWired MCU v1.0.sch └── readme.md ├── Images ├── 2SSR_Pinout_notitle.jpg ├── Gateway+modules.jpg ├── Gateway_Pinout_notitle.jpg ├── GetWired.png ├── GetWired_small.png ├── GoWired logo 600dpi.png ├── Gowired-no-home-50dpi.png ├── Gowired-no-home-600dpi.png ├── MCU handbook en.jpg ├── MCU_Pinout_notitle.jpg ├── RGBW_Pinout_notitle.jpg ├── Wiring instructions.jpg ├── image.png ├── obraz_2022-06-02_145021676.png └── readme.md ├── LICENSE ├── README.md └── Software ├── 8RelayDin Shield └── Arduino │ └── main │ ├── Configuration.h │ └── main.ino ├── Ethernet Gateway ├── Arduino │ ├── Gateway-MQTT │ │ └── Gateway-MQTT.ino │ └── Gateway │ │ └── Gateway.ino └── Readme.md ├── GoWired-lib └── readme.md ├── Heating Controller ├── Arduino │ └── main │ │ ├── Configuration.h │ │ └── main.ino └── Readme.md ├── Modules ├── Arduino │ └── main │ │ ├── Configuration.h │ │ └── main.ino └── Readme.md ├── Multiprotocol Gateway └── Readme.md ├── Readme.md └── Touch ├── MCU-Raw ├── Arduino │ └── main │ │ ├── Configuration.h │ │ └── main.ino └── Readme.md └── MCU ├── Arduino └── main │ ├── Configuration.h │ └── main.ino └── Readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/.gitignore -------------------------------------------------------------------------------- /Enclosures/DIN Rail Pin.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Enclosures/DIN Rail Pin.stl -------------------------------------------------------------------------------- /Enclosures/GoWired DIN Rail Case bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Enclosures/GoWired DIN Rail Case bottom.stl -------------------------------------------------------------------------------- /Enclosures/GoWired DIN Rail Case top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Enclosures/GoWired DIN Rail Case top.stl -------------------------------------------------------------------------------- /Enclosures/GoWired In-wall Case.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Enclosures/GoWired In-wall Case.stl -------------------------------------------------------------------------------- /Enclosures/In-Wall-to-DIN_bot.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Enclosures/In-Wall-to-DIN_bot.stl -------------------------------------------------------------------------------- /Enclosures/In-Wall-to-DIN_top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Enclosures/In-Wall-to-DIN_top.stl -------------------------------------------------------------------------------- /Enclosures/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Enclosures/readme.md -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/Assembly/BOM GoWired Adapter v1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/Assembly/BOM GoWired Adapter v1.csv -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/DrillFiles/drills.xln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/DrillFiles/drills.xln -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/GerberFiles/copper_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/GerberFiles/copper_bottom.gbr -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/GerberFiles/copper_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/GerberFiles/copper_top.gbr -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/GerberFiles/gerber_job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/GerberFiles/gerber_job.gbrjob -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/GerberFiles/profile.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/GerberFiles/profile.gbr -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/GerberFiles/silkscreen_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/GerberFiles/silkscreen_bottom.gbr -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/GerberFiles/silkscreen_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/GerberFiles/silkscreen_top.gbr -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/GerberFiles/soldermask_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/GerberFiles/soldermask_bottom.gbr -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/GerberFiles/soldermask_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/GerberFiles/soldermask_top.gbr -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/GerberFiles/solderpaste_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/GerberFiles/solderpaste_bottom.gbr -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/GerberFiles/solderpaste_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/GerberFiles/solderpaste_top.gbr -------------------------------------------------------------------------------- /Hardware/GoWired Adapter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired Adapter/readme.md -------------------------------------------------------------------------------- /Hardware/GoWired MCU v1.0/GoWired MCU v1.0.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired MCU v1.0/GoWired MCU v1.0.brd -------------------------------------------------------------------------------- /Hardware/GoWired MCU v1.0/GoWired MCU v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired MCU v1.0/GoWired MCU v1.0.pdf -------------------------------------------------------------------------------- /Hardware/GoWired MCU v1.0/GoWired MCU v1.0.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Hardware/GoWired MCU v1.0/GoWired MCU v1.0.sch -------------------------------------------------------------------------------- /Hardware/readme.md: -------------------------------------------------------------------------------- 1 | All hardware schematics will be released here. 2 | -------------------------------------------------------------------------------- /Images/2SSR_Pinout_notitle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/2SSR_Pinout_notitle.jpg -------------------------------------------------------------------------------- /Images/Gateway+modules.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/Gateway+modules.jpg -------------------------------------------------------------------------------- /Images/Gateway_Pinout_notitle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/Gateway_Pinout_notitle.jpg -------------------------------------------------------------------------------- /Images/GetWired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/GetWired.png -------------------------------------------------------------------------------- /Images/GetWired_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/GetWired_small.png -------------------------------------------------------------------------------- /Images/GoWired logo 600dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/GoWired logo 600dpi.png -------------------------------------------------------------------------------- /Images/Gowired-no-home-50dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/Gowired-no-home-50dpi.png -------------------------------------------------------------------------------- /Images/Gowired-no-home-600dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/Gowired-no-home-600dpi.png -------------------------------------------------------------------------------- /Images/MCU handbook en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/MCU handbook en.jpg -------------------------------------------------------------------------------- /Images/MCU_Pinout_notitle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/MCU_Pinout_notitle.jpg -------------------------------------------------------------------------------- /Images/RGBW_Pinout_notitle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/RGBW_Pinout_notitle.jpg -------------------------------------------------------------------------------- /Images/Wiring instructions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/Wiring instructions.jpg -------------------------------------------------------------------------------- /Images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/image.png -------------------------------------------------------------------------------- /Images/obraz_2022-06-02_145021676.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Images/obraz_2022-06-02_145021676.png -------------------------------------------------------------------------------- /Images/readme.md: -------------------------------------------------------------------------------- 1 | This is a directory for uploading images. 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/README.md -------------------------------------------------------------------------------- /Software/8RelayDin Shield/Arduino/main/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/8RelayDin Shield/Arduino/main/Configuration.h -------------------------------------------------------------------------------- /Software/8RelayDin Shield/Arduino/main/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/8RelayDin Shield/Arduino/main/main.ino -------------------------------------------------------------------------------- /Software/Ethernet Gateway/Arduino/Gateway-MQTT/Gateway-MQTT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Ethernet Gateway/Arduino/Gateway-MQTT/Gateway-MQTT.ino -------------------------------------------------------------------------------- /Software/Ethernet Gateway/Arduino/Gateway/Gateway.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Ethernet Gateway/Arduino/Gateway/Gateway.ino -------------------------------------------------------------------------------- /Software/Ethernet Gateway/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Ethernet Gateway/Readme.md -------------------------------------------------------------------------------- /Software/GoWired-lib/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/GoWired-lib/readme.md -------------------------------------------------------------------------------- /Software/Heating Controller/Arduino/main/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Heating Controller/Arduino/main/Configuration.h -------------------------------------------------------------------------------- /Software/Heating Controller/Arduino/main/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Heating Controller/Arduino/main/main.ino -------------------------------------------------------------------------------- /Software/Heating Controller/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Heating Controller/Readme.md -------------------------------------------------------------------------------- /Software/Modules/Arduino/main/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Modules/Arduino/main/Configuration.h -------------------------------------------------------------------------------- /Software/Modules/Arduino/main/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Modules/Arduino/main/main.ino -------------------------------------------------------------------------------- /Software/Modules/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Modules/Readme.md -------------------------------------------------------------------------------- /Software/Multiprotocol Gateway/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Multiprotocol Gateway/Readme.md -------------------------------------------------------------------------------- /Software/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/Touch/MCU-Raw/Arduino/main/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Touch/MCU-Raw/Arduino/main/Configuration.h -------------------------------------------------------------------------------- /Software/Touch/MCU-Raw/Arduino/main/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Touch/MCU-Raw/Arduino/main/main.ino -------------------------------------------------------------------------------- /Software/Touch/MCU-Raw/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Touch/MCU-Raw/Readme.md -------------------------------------------------------------------------------- /Software/Touch/MCU/Arduino/main/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Touch/MCU/Arduino/main/Configuration.h -------------------------------------------------------------------------------- /Software/Touch/MCU/Arduino/main/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Touch/MCU/Arduino/main/main.ino -------------------------------------------------------------------------------- /Software/Touch/MCU/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoWired/GoWired-Project/HEAD/Software/Touch/MCU/Readme.md --------------------------------------------------------------------------------