├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── README.md ├── applications ├── 01_sensortag │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── esb_low_power_ptx_gcc_nrf52.ld │ ├── main.c │ └── sdk_config.h ├── 02_accell_tag │ ├── .gitignore │ ├── Makefile │ ├── debug.jdebug │ ├── debug.jdebug.user │ ├── esb_low_power_ptx_gcc_nrf52.ld │ ├── main.c │ └── sdk_config.h ├── 03_buttons │ ├── .gitignore │ ├── Makefile │ ├── debug.jdebug │ ├── debug.jdebug.user │ ├── esb_low_power_ptx_gcc_nrf52.ld │ ├── main.c │ └── sdk_config.h ├── 04_uart_dongle │ ├── .gitignore │ ├── Makefile │ ├── debug.jdebug │ ├── esb_ptx_prx_gcc_nrf52.ld │ ├── main.c │ └── sdk_config.h ├── 05_rotary_decoder │ ├── .gitignore │ ├── Makefile │ ├── debug.jdebug │ ├── esb_ptx_prx_gcc_nrf52.ld │ ├── main.c │ ├── ppi.graphml │ ├── ppi.svg │ ├── readme.md │ └── sdk_config.h ├── 06_bldc_52832 │ ├── .gitignore │ ├── Makefile │ ├── debug.jdebug │ ├── esb_ptx_prx_gcc_nrf52.ld │ ├── main.c │ └── sdk_config.h ├── 08_usb_dongle │ ├── .gitignore │ ├── Makefile │ ├── main.c │ ├── nRF52840_debug.jdebug │ ├── nRF52840_debug.jdebug.user │ ├── openthread_nrf52840.ld │ ├── openthread_nrf52840_bootloader.ld │ └── sdk_config.h ├── 09_usb_dongle_cpp │ ├── .gitignore │ ├── Makefile │ ├── main.cpp │ ├── openthread_nrf52840.ld │ ├── openthread_nrf52840_bootloader.ld │ └── sdk_config.h ├── 10_sensored_bldc │ ├── .gitignore │ ├── Makefile │ ├── debug.jdebug │ ├── main.cpp │ ├── openthread_nrf52840.ld │ ├── openthread_nrf52840_bootloader.ld │ └── sdk_config.h ├── nodes.json ├── uicr_map.json └── uicr_user_defines.h ├── boards ├── README.md ├── boards.c ├── boards.h ├── custom840.h ├── nrf52832_rovarm.h ├── nrf52_buttons.h ├── nrf52_dongle.h ├── nrf52_dongle │ ├── 3d_models │ │ └── needls_support.stl │ ├── default_app.hex │ ├── images │ │ ├── adapter.png │ │ ├── back_swdio.png │ │ ├── components.png │ │ ├── default_map.png │ │ ├── dongle.png │ │ ├── pogo-pin 0.5mm x 16.35mm.png │ │ └── pogo-pin adapter.jpg │ └── softdevice_s132_nRF52_2.0.0.bin ├── nrf52_sensortag.h ├── nrf52_sensortag │ ├── images │ │ ├── PCB.png │ │ ├── module_size.png │ │ ├── mounted.png │ │ ├── schematics_pinout.png │ │ └── sensor_tag.png │ └── pcb │ │ ├── .gitignore │ │ ├── nRF52_sensortag_BOM.xml │ │ ├── nRF52_sensortag_gerbers.zip │ │ ├── sensor_tag.brd │ │ └── sensor_tag.sch ├── pca10040.h └── pca10059.h ├── devices.graphml ├── drivers ├── app_ser.c ├── app_ser.h ├── battery.c ├── battery.h ├── bldc.c ├── bldc.cpp ├── bldc.h ├── bldc.hpp ├── bme280.c ├── bme280.h ├── clocks.c ├── clocks.h ├── compare.c ├── compare.h ├── max44009.c ├── max44009.h ├── mesh.c ├── mesh.h ├── mpu6050.c ├── mpu6050.h ├── mpu60x0_register_map.h ├── strmap.cpp ├── strmap.hpp ├── timestamp.c ├── timestamp.h ├── twi.c ├── twi.h ├── usb_print.c ├── usb_print.cpp ├── usb_print.h ├── usb_print.hpp ├── utils.c └── utils.h ├── home automation.graphml ├── images ├── 2018-05-13_14h46_20.png ├── alive-json.png ├── alive-trace-route.png ├── bldc_control.png ├── buttons.png ├── cmsis-wizard.png ├── discourse.svg ├── grafana-dashboard.png ├── mesh.png ├── motion_tag.png ├── nRF52-features.png ├── nRF52832_sensortag.png ├── nRF52840-dongle-debug.png ├── nodes.json.png ├── nrf52840-usb-dongle.png ├── nrf_mesh.svg ├── nrf_mqtt.gif ├── nrf_serial.gif ├── packet.png ├── pogo-versions.jpg ├── protocol.png ├── pylink.png └── rf_encoder.png ├── nodes-server.sh ├── nodes.json ├── nrf-usb-dongle.graphml ├── nrf_mesh.graphml ├── raspi ├── .gitignore ├── bathroom │ ├── .gitignore │ ├── bathroom.py │ ├── cfg.py │ ├── config.json │ ├── config_WassDell.json │ ├── config_mano.json │ └── mqtt.py ├── conbee │ ├── .gitignore │ ├── cfg.py │ ├── conbee.py │ ├── config.json │ ├── config_WassDell.json │ ├── mqtt.py │ ├── output.log │ ├── readme.md │ └── sensors_notifications.json ├── design.graphml ├── esp32 │ ├── .gitignore │ ├── cfg.py │ ├── config.json │ ├── config_WassDell.json │ ├── config_mano.json │ ├── esp32.py │ └── mqtt.py ├── grafana │ ├── Alive Routers.json │ ├── Batteries and Links.json │ ├── Bedroom.json │ ├── Environment Sensors plus.json │ ├── Environment Sensors.json │ ├── Last Day sensors.json │ ├── Last Month.json │ └── Plants.json ├── heat │ ├── .gitignore │ ├── cfg.py │ ├── config.json │ ├── config_WassDell.json │ ├── config_mano.json │ ├── heat.py │ └── mqtt.py ├── home_status │ ├── .gitignore │ ├── cfg.py │ ├── config.json │ ├── config_WassDell.json │ ├── config_mano.json │ ├── home.py │ ├── home_status.log │ └── mqtt.py ├── hue │ ├── hue_config.json │ ├── hue_get.json │ ├── hue_rules.json │ └── hue_sensors.json ├── influx │ ├── .gitignore │ ├── backup.sh │ ├── cfg.py │ ├── config.json │ ├── config_WassDell.json │ ├── config_mano.json │ ├── export_1y.sh │ ├── export_csv.sh │ ├── influx_client.py │ ├── mqtt.py │ └── readme.md ├── leds_panel │ ├── cfg.py │ ├── config_WassDell.json │ ├── leds_panel.py │ └── mqtt.py ├── milight │ ├── cfg.py │ ├── config.json │ └── milight_gateway.py ├── raspi_run.sh ├── requirements.txt ├── rf_stm32 │ ├── .gitignore │ ├── cfg.py │ ├── config.json │ ├── config_WassDell.json │ ├── config_mano.json │ ├── mesh.py │ ├── mqtt.py │ ├── rf_stm32.py │ └── rf_uart.py ├── rf_uart │ ├── .gitignore │ ├── cfg.py │ ├── config.json │ ├── config_WassDell.json │ ├── config_rfserv.json │ ├── config_webserv.json │ ├── mesh.py │ ├── mesh_controller.py │ ├── mesh_controller.service │ ├── mqtt.py │ ├── rf_uart.py │ └── uart_failure.md ├── ruler │ ├── .gitignore │ ├── cfg.py │ ├── config.json │ ├── config_WassDell.json │ ├── config_mano.json │ ├── ruler.py │ └── rules.py └── wemo │ ├── .gitignore │ ├── cfg.py │ ├── config.json │ ├── mqtt.py │ └── wemo_client.py ├── run_services.sh └── tools ├── .gitignore ├── cfg.py ├── off.bat ├── on.bat ├── package.bat ├── private.bat ├── public.bat ├── read.bat ├── settings.bat ├── uicr.py └── write.bat /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.tmp 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/README.md -------------------------------------------------------------------------------- /applications/01_sensortag/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /applications/01_sensortag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/01_sensortag/Makefile -------------------------------------------------------------------------------- /applications/01_sensortag/README.md: -------------------------------------------------------------------------------- 1 | nRF52 Sensor Tag 2 | = 3 | -------------------------------------------------------------------------------- /applications/01_sensortag/esb_low_power_ptx_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/01_sensortag/esb_low_power_ptx_gcc_nrf52.ld -------------------------------------------------------------------------------- /applications/01_sensortag/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/01_sensortag/main.c -------------------------------------------------------------------------------- /applications/01_sensortag/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/01_sensortag/sdk_config.h -------------------------------------------------------------------------------- /applications/02_accell_tag/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /applications/02_accell_tag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/02_accell_tag/Makefile -------------------------------------------------------------------------------- /applications/02_accell_tag/debug.jdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/02_accell_tag/debug.jdebug -------------------------------------------------------------------------------- /applications/02_accell_tag/debug.jdebug.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/02_accell_tag/debug.jdebug.user -------------------------------------------------------------------------------- /applications/02_accell_tag/esb_low_power_ptx_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/02_accell_tag/esb_low_power_ptx_gcc_nrf52.ld -------------------------------------------------------------------------------- /applications/02_accell_tag/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/02_accell_tag/main.c -------------------------------------------------------------------------------- /applications/02_accell_tag/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/02_accell_tag/sdk_config.h -------------------------------------------------------------------------------- /applications/03_buttons/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /applications/03_buttons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/03_buttons/Makefile -------------------------------------------------------------------------------- /applications/03_buttons/debug.jdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/03_buttons/debug.jdebug -------------------------------------------------------------------------------- /applications/03_buttons/debug.jdebug.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/03_buttons/debug.jdebug.user -------------------------------------------------------------------------------- /applications/03_buttons/esb_low_power_ptx_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/03_buttons/esb_low_power_ptx_gcc_nrf52.ld -------------------------------------------------------------------------------- /applications/03_buttons/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/03_buttons/main.c -------------------------------------------------------------------------------- /applications/03_buttons/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/03_buttons/sdk_config.h -------------------------------------------------------------------------------- /applications/04_uart_dongle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/04_uart_dongle/.gitignore -------------------------------------------------------------------------------- /applications/04_uart_dongle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/04_uart_dongle/Makefile -------------------------------------------------------------------------------- /applications/04_uart_dongle/debug.jdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/04_uart_dongle/debug.jdebug -------------------------------------------------------------------------------- /applications/04_uart_dongle/esb_ptx_prx_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/04_uart_dongle/esb_ptx_prx_gcc_nrf52.ld -------------------------------------------------------------------------------- /applications/04_uart_dongle/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/04_uart_dongle/main.c -------------------------------------------------------------------------------- /applications/04_uart_dongle/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/04_uart_dongle/sdk_config.h -------------------------------------------------------------------------------- /applications/05_rotary_decoder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/05_rotary_decoder/.gitignore -------------------------------------------------------------------------------- /applications/05_rotary_decoder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/05_rotary_decoder/Makefile -------------------------------------------------------------------------------- /applications/05_rotary_decoder/debug.jdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/05_rotary_decoder/debug.jdebug -------------------------------------------------------------------------------- /applications/05_rotary_decoder/esb_ptx_prx_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/05_rotary_decoder/esb_ptx_prx_gcc_nrf52.ld -------------------------------------------------------------------------------- /applications/05_rotary_decoder/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/05_rotary_decoder/main.c -------------------------------------------------------------------------------- /applications/05_rotary_decoder/ppi.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/05_rotary_decoder/ppi.graphml -------------------------------------------------------------------------------- /applications/05_rotary_decoder/ppi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/05_rotary_decoder/ppi.svg -------------------------------------------------------------------------------- /applications/05_rotary_decoder/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/05_rotary_decoder/readme.md -------------------------------------------------------------------------------- /applications/05_rotary_decoder/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/05_rotary_decoder/sdk_config.h -------------------------------------------------------------------------------- /applications/06_bldc_52832/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/06_bldc_52832/.gitignore -------------------------------------------------------------------------------- /applications/06_bldc_52832/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/06_bldc_52832/Makefile -------------------------------------------------------------------------------- /applications/06_bldc_52832/debug.jdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/06_bldc_52832/debug.jdebug -------------------------------------------------------------------------------- /applications/06_bldc_52832/esb_ptx_prx_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/06_bldc_52832/esb_ptx_prx_gcc_nrf52.ld -------------------------------------------------------------------------------- /applications/06_bldc_52832/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/06_bldc_52832/main.c -------------------------------------------------------------------------------- /applications/06_bldc_52832/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/06_bldc_52832/sdk_config.h -------------------------------------------------------------------------------- /applications/08_usb_dongle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/08_usb_dongle/.gitignore -------------------------------------------------------------------------------- /applications/08_usb_dongle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/08_usb_dongle/Makefile -------------------------------------------------------------------------------- /applications/08_usb_dongle/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/08_usb_dongle/main.c -------------------------------------------------------------------------------- /applications/08_usb_dongle/nRF52840_debug.jdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/08_usb_dongle/nRF52840_debug.jdebug -------------------------------------------------------------------------------- /applications/08_usb_dongle/nRF52840_debug.jdebug.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/08_usb_dongle/nRF52840_debug.jdebug.user -------------------------------------------------------------------------------- /applications/08_usb_dongle/openthread_nrf52840.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/08_usb_dongle/openthread_nrf52840.ld -------------------------------------------------------------------------------- /applications/08_usb_dongle/openthread_nrf52840_bootloader.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/08_usb_dongle/openthread_nrf52840_bootloader.ld -------------------------------------------------------------------------------- /applications/08_usb_dongle/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/08_usb_dongle/sdk_config.h -------------------------------------------------------------------------------- /applications/09_usb_dongle_cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/09_usb_dongle_cpp/.gitignore -------------------------------------------------------------------------------- /applications/09_usb_dongle_cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/09_usb_dongle_cpp/Makefile -------------------------------------------------------------------------------- /applications/09_usb_dongle_cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/09_usb_dongle_cpp/main.cpp -------------------------------------------------------------------------------- /applications/09_usb_dongle_cpp/openthread_nrf52840.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/09_usb_dongle_cpp/openthread_nrf52840.ld -------------------------------------------------------------------------------- /applications/09_usb_dongle_cpp/openthread_nrf52840_bootloader.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/09_usb_dongle_cpp/openthread_nrf52840_bootloader.ld -------------------------------------------------------------------------------- /applications/09_usb_dongle_cpp/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/09_usb_dongle_cpp/sdk_config.h -------------------------------------------------------------------------------- /applications/10_sensored_bldc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/10_sensored_bldc/.gitignore -------------------------------------------------------------------------------- /applications/10_sensored_bldc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/10_sensored_bldc/Makefile -------------------------------------------------------------------------------- /applications/10_sensored_bldc/debug.jdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/10_sensored_bldc/debug.jdebug -------------------------------------------------------------------------------- /applications/10_sensored_bldc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/10_sensored_bldc/main.cpp -------------------------------------------------------------------------------- /applications/10_sensored_bldc/openthread_nrf52840.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/10_sensored_bldc/openthread_nrf52840.ld -------------------------------------------------------------------------------- /applications/10_sensored_bldc/openthread_nrf52840_bootloader.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/10_sensored_bldc/openthread_nrf52840_bootloader.ld -------------------------------------------------------------------------------- /applications/10_sensored_bldc/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/10_sensored_bldc/sdk_config.h -------------------------------------------------------------------------------- /applications/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/nodes.json -------------------------------------------------------------------------------- /applications/uicr_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/uicr_map.json -------------------------------------------------------------------------------- /applications/uicr_user_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/applications/uicr_user_defines.h -------------------------------------------------------------------------------- /boards/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boards/boards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/boards.c -------------------------------------------------------------------------------- /boards/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/boards.h -------------------------------------------------------------------------------- /boards/custom840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/custom840.h -------------------------------------------------------------------------------- /boards/nrf52832_rovarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52832_rovarm.h -------------------------------------------------------------------------------- /boards/nrf52_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_buttons.h -------------------------------------------------------------------------------- /boards/nrf52_dongle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_dongle.h -------------------------------------------------------------------------------- /boards/nrf52_dongle/3d_models/needls_support.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_dongle/3d_models/needls_support.stl -------------------------------------------------------------------------------- /boards/nrf52_dongle/default_app.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_dongle/default_app.hex -------------------------------------------------------------------------------- /boards/nrf52_dongle/images/adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_dongle/images/adapter.png -------------------------------------------------------------------------------- /boards/nrf52_dongle/images/back_swdio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_dongle/images/back_swdio.png -------------------------------------------------------------------------------- /boards/nrf52_dongle/images/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_dongle/images/components.png -------------------------------------------------------------------------------- /boards/nrf52_dongle/images/default_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_dongle/images/default_map.png -------------------------------------------------------------------------------- /boards/nrf52_dongle/images/dongle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_dongle/images/dongle.png -------------------------------------------------------------------------------- /boards/nrf52_dongle/images/pogo-pin 0.5mm x 16.35mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_dongle/images/pogo-pin 0.5mm x 16.35mm.png -------------------------------------------------------------------------------- /boards/nrf52_dongle/images/pogo-pin adapter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_dongle/images/pogo-pin adapter.jpg -------------------------------------------------------------------------------- /boards/nrf52_dongle/softdevice_s132_nRF52_2.0.0.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boards/nrf52_sensortag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_sensortag.h -------------------------------------------------------------------------------- /boards/nrf52_sensortag/images/PCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_sensortag/images/PCB.png -------------------------------------------------------------------------------- /boards/nrf52_sensortag/images/module_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_sensortag/images/module_size.png -------------------------------------------------------------------------------- /boards/nrf52_sensortag/images/mounted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_sensortag/images/mounted.png -------------------------------------------------------------------------------- /boards/nrf52_sensortag/images/schematics_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_sensortag/images/schematics_pinout.png -------------------------------------------------------------------------------- /boards/nrf52_sensortag/images/sensor_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_sensortag/images/sensor_tag.png -------------------------------------------------------------------------------- /boards/nrf52_sensortag/pcb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_sensortag/pcb/.gitignore -------------------------------------------------------------------------------- /boards/nrf52_sensortag/pcb/nRF52_sensortag_BOM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_sensortag/pcb/nRF52_sensortag_BOM.xml -------------------------------------------------------------------------------- /boards/nrf52_sensortag/pcb/nRF52_sensortag_gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_sensortag/pcb/nRF52_sensortag_gerbers.zip -------------------------------------------------------------------------------- /boards/nrf52_sensortag/pcb/sensor_tag.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_sensortag/pcb/sensor_tag.brd -------------------------------------------------------------------------------- /boards/nrf52_sensortag/pcb/sensor_tag.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/nrf52_sensortag/pcb/sensor_tag.sch -------------------------------------------------------------------------------- /boards/pca10040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/pca10040.h -------------------------------------------------------------------------------- /boards/pca10059.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/boards/pca10059.h -------------------------------------------------------------------------------- /devices.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/devices.graphml -------------------------------------------------------------------------------- /drivers/app_ser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/app_ser.c -------------------------------------------------------------------------------- /drivers/app_ser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/app_ser.h -------------------------------------------------------------------------------- /drivers/battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/battery.c -------------------------------------------------------------------------------- /drivers/battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/battery.h -------------------------------------------------------------------------------- /drivers/bldc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/bldc.c -------------------------------------------------------------------------------- /drivers/bldc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/bldc.cpp -------------------------------------------------------------------------------- /drivers/bldc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/bldc.h -------------------------------------------------------------------------------- /drivers/bldc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/bldc.hpp -------------------------------------------------------------------------------- /drivers/bme280.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/bme280.c -------------------------------------------------------------------------------- /drivers/bme280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/bme280.h -------------------------------------------------------------------------------- /drivers/clocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/clocks.c -------------------------------------------------------------------------------- /drivers/clocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/clocks.h -------------------------------------------------------------------------------- /drivers/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/compare.c -------------------------------------------------------------------------------- /drivers/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/compare.h -------------------------------------------------------------------------------- /drivers/max44009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/max44009.c -------------------------------------------------------------------------------- /drivers/max44009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/max44009.h -------------------------------------------------------------------------------- /drivers/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/mesh.c -------------------------------------------------------------------------------- /drivers/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/mesh.h -------------------------------------------------------------------------------- /drivers/mpu6050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/mpu6050.c -------------------------------------------------------------------------------- /drivers/mpu6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/mpu6050.h -------------------------------------------------------------------------------- /drivers/mpu60x0_register_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/mpu60x0_register_map.h -------------------------------------------------------------------------------- /drivers/strmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/strmap.cpp -------------------------------------------------------------------------------- /drivers/strmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/strmap.hpp -------------------------------------------------------------------------------- /drivers/timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/timestamp.c -------------------------------------------------------------------------------- /drivers/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/timestamp.h -------------------------------------------------------------------------------- /drivers/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/twi.c -------------------------------------------------------------------------------- /drivers/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/twi.h -------------------------------------------------------------------------------- /drivers/usb_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/usb_print.c -------------------------------------------------------------------------------- /drivers/usb_print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/usb_print.cpp -------------------------------------------------------------------------------- /drivers/usb_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/usb_print.h -------------------------------------------------------------------------------- /drivers/usb_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/usb_print.hpp -------------------------------------------------------------------------------- /drivers/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/utils.c -------------------------------------------------------------------------------- /drivers/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/drivers/utils.h -------------------------------------------------------------------------------- /home automation.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/home automation.graphml -------------------------------------------------------------------------------- /images/2018-05-13_14h46_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/2018-05-13_14h46_20.png -------------------------------------------------------------------------------- /images/alive-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/alive-json.png -------------------------------------------------------------------------------- /images/alive-trace-route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/alive-trace-route.png -------------------------------------------------------------------------------- /images/bldc_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/bldc_control.png -------------------------------------------------------------------------------- /images/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/buttons.png -------------------------------------------------------------------------------- /images/cmsis-wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/cmsis-wizard.png -------------------------------------------------------------------------------- /images/discourse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/discourse.svg -------------------------------------------------------------------------------- /images/grafana-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/grafana-dashboard.png -------------------------------------------------------------------------------- /images/mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/mesh.png -------------------------------------------------------------------------------- /images/motion_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/motion_tag.png -------------------------------------------------------------------------------- /images/nRF52-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/nRF52-features.png -------------------------------------------------------------------------------- /images/nRF52832_sensortag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/nRF52832_sensortag.png -------------------------------------------------------------------------------- /images/nRF52840-dongle-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/nRF52840-dongle-debug.png -------------------------------------------------------------------------------- /images/nodes.json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/nodes.json.png -------------------------------------------------------------------------------- /images/nrf52840-usb-dongle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/nrf52840-usb-dongle.png -------------------------------------------------------------------------------- /images/nrf_mesh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/nrf_mesh.svg -------------------------------------------------------------------------------- /images/nrf_mqtt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/nrf_mqtt.gif -------------------------------------------------------------------------------- /images/nrf_serial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/nrf_serial.gif -------------------------------------------------------------------------------- /images/packet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/packet.png -------------------------------------------------------------------------------- /images/pogo-versions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/pogo-versions.jpg -------------------------------------------------------------------------------- /images/protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/protocol.png -------------------------------------------------------------------------------- /images/pylink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/pylink.png -------------------------------------------------------------------------------- /images/rf_encoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/images/rf_encoder.png -------------------------------------------------------------------------------- /nodes-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/nodes-server.sh -------------------------------------------------------------------------------- /nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/nodes.json -------------------------------------------------------------------------------- /nrf-usb-dongle.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/nrf-usb-dongle.graphml -------------------------------------------------------------------------------- /nrf_mesh.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/nrf_mesh.graphml -------------------------------------------------------------------------------- /raspi/.gitignore: -------------------------------------------------------------------------------- 1 | .python_hue 2 | -------------------------------------------------------------------------------- /raspi/bathroom/.gitignore: -------------------------------------------------------------------------------- 1 | bathroom.log 2 | -------------------------------------------------------------------------------- /raspi/bathroom/bathroom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/bathroom/bathroom.py -------------------------------------------------------------------------------- /raspi/bathroom/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/bathroom/cfg.py -------------------------------------------------------------------------------- /raspi/bathroom/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/bathroom/config.json -------------------------------------------------------------------------------- /raspi/bathroom/config_WassDell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/bathroom/config_WassDell.json -------------------------------------------------------------------------------- /raspi/bathroom/config_mano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/bathroom/config_mano.json -------------------------------------------------------------------------------- /raspi/bathroom/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/bathroom/mqtt.py -------------------------------------------------------------------------------- /raspi/conbee/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/conbee/.gitignore -------------------------------------------------------------------------------- /raspi/conbee/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/conbee/cfg.py -------------------------------------------------------------------------------- /raspi/conbee/conbee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/conbee/conbee.py -------------------------------------------------------------------------------- /raspi/conbee/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/conbee/config.json -------------------------------------------------------------------------------- /raspi/conbee/config_WassDell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/conbee/config_WassDell.json -------------------------------------------------------------------------------- /raspi/conbee/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/conbee/mqtt.py -------------------------------------------------------------------------------- /raspi/conbee/output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/conbee/output.log -------------------------------------------------------------------------------- /raspi/conbee/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/conbee/readme.md -------------------------------------------------------------------------------- /raspi/conbee/sensors_notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/conbee/sensors_notifications.json -------------------------------------------------------------------------------- /raspi/design.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/design.graphml -------------------------------------------------------------------------------- /raspi/esp32/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /raspi/esp32/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/esp32/cfg.py -------------------------------------------------------------------------------- /raspi/esp32/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/esp32/config.json -------------------------------------------------------------------------------- /raspi/esp32/config_WassDell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/esp32/config_WassDell.json -------------------------------------------------------------------------------- /raspi/esp32/config_mano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/esp32/config_mano.json -------------------------------------------------------------------------------- /raspi/esp32/esp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/esp32/esp32.py -------------------------------------------------------------------------------- /raspi/esp32/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/esp32/mqtt.py -------------------------------------------------------------------------------- /raspi/grafana/Alive Routers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/grafana/Alive Routers.json -------------------------------------------------------------------------------- /raspi/grafana/Batteries and Links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/grafana/Batteries and Links.json -------------------------------------------------------------------------------- /raspi/grafana/Bedroom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/grafana/Bedroom.json -------------------------------------------------------------------------------- /raspi/grafana/Environment Sensors plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/grafana/Environment Sensors plus.json -------------------------------------------------------------------------------- /raspi/grafana/Environment Sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/grafana/Environment Sensors.json -------------------------------------------------------------------------------- /raspi/grafana/Last Day sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/grafana/Last Day sensors.json -------------------------------------------------------------------------------- /raspi/grafana/Last Month.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/grafana/Last Month.json -------------------------------------------------------------------------------- /raspi/grafana/Plants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/grafana/Plants.json -------------------------------------------------------------------------------- /raspi/heat/.gitignore: -------------------------------------------------------------------------------- 1 | heat.log 2 | -------------------------------------------------------------------------------- /raspi/heat/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/heat/cfg.py -------------------------------------------------------------------------------- /raspi/heat/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/heat/config.json -------------------------------------------------------------------------------- /raspi/heat/config_WassDell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/heat/config_WassDell.json -------------------------------------------------------------------------------- /raspi/heat/config_mano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/heat/config_mano.json -------------------------------------------------------------------------------- /raspi/heat/heat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/heat/heat.py -------------------------------------------------------------------------------- /raspi/heat/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/heat/mqtt.py -------------------------------------------------------------------------------- /raspi/home_status/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | -------------------------------------------------------------------------------- /raspi/home_status/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/home_status/cfg.py -------------------------------------------------------------------------------- /raspi/home_status/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/home_status/config.json -------------------------------------------------------------------------------- /raspi/home_status/config_WassDell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/home_status/config_WassDell.json -------------------------------------------------------------------------------- /raspi/home_status/config_mano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/home_status/config_mano.json -------------------------------------------------------------------------------- /raspi/home_status/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/home_status/home.py -------------------------------------------------------------------------------- /raspi/home_status/home_status.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/home_status/home_status.log -------------------------------------------------------------------------------- /raspi/home_status/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/home_status/mqtt.py -------------------------------------------------------------------------------- /raspi/hue/hue_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/hue/hue_config.json -------------------------------------------------------------------------------- /raspi/hue/hue_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/hue/hue_get.json -------------------------------------------------------------------------------- /raspi/hue/hue_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/hue/hue_rules.json -------------------------------------------------------------------------------- /raspi/hue/hue_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/hue/hue_sensors.json -------------------------------------------------------------------------------- /raspi/influx/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | influx.log 4 | -------------------------------------------------------------------------------- /raspi/influx/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/influx/backup.sh -------------------------------------------------------------------------------- /raspi/influx/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/influx/cfg.py -------------------------------------------------------------------------------- /raspi/influx/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/influx/config.json -------------------------------------------------------------------------------- /raspi/influx/config_WassDell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/influx/config_WassDell.json -------------------------------------------------------------------------------- /raspi/influx/config_mano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/influx/config_mano.json -------------------------------------------------------------------------------- /raspi/influx/export_1y.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/influx/export_1y.sh -------------------------------------------------------------------------------- /raspi/influx/export_csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/influx/export_csv.sh -------------------------------------------------------------------------------- /raspi/influx/influx_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/influx/influx_client.py -------------------------------------------------------------------------------- /raspi/influx/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/influx/mqtt.py -------------------------------------------------------------------------------- /raspi/influx/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/influx/readme.md -------------------------------------------------------------------------------- /raspi/leds_panel/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/leds_panel/cfg.py -------------------------------------------------------------------------------- /raspi/leds_panel/config_WassDell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/leds_panel/config_WassDell.json -------------------------------------------------------------------------------- /raspi/leds_panel/leds_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/leds_panel/leds_panel.py -------------------------------------------------------------------------------- /raspi/leds_panel/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/leds_panel/mqtt.py -------------------------------------------------------------------------------- /raspi/milight/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/milight/cfg.py -------------------------------------------------------------------------------- /raspi/milight/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/milight/config.json -------------------------------------------------------------------------------- /raspi/milight/milight_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/milight/milight_gateway.py -------------------------------------------------------------------------------- /raspi/raspi_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/raspi_run.sh -------------------------------------------------------------------------------- /raspi/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/requirements.txt -------------------------------------------------------------------------------- /raspi/rf_stm32/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /raspi/rf_stm32/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_stm32/cfg.py -------------------------------------------------------------------------------- /raspi/rf_stm32/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_stm32/config.json -------------------------------------------------------------------------------- /raspi/rf_stm32/config_WassDell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_stm32/config_WassDell.json -------------------------------------------------------------------------------- /raspi/rf_stm32/config_mano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_stm32/config_mano.json -------------------------------------------------------------------------------- /raspi/rf_stm32/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_stm32/mesh.py -------------------------------------------------------------------------------- /raspi/rf_stm32/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_stm32/mqtt.py -------------------------------------------------------------------------------- /raspi/rf_stm32/rf_stm32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_stm32/rf_stm32.py -------------------------------------------------------------------------------- /raspi/rf_stm32/rf_uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_stm32/rf_uart.py -------------------------------------------------------------------------------- /raspi/rf_uart/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /raspi/rf_uart/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_uart/cfg.py -------------------------------------------------------------------------------- /raspi/rf_uart/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_uart/config.json -------------------------------------------------------------------------------- /raspi/rf_uart/config_WassDell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_uart/config_WassDell.json -------------------------------------------------------------------------------- /raspi/rf_uart/config_rfserv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_uart/config_rfserv.json -------------------------------------------------------------------------------- /raspi/rf_uart/config_webserv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_uart/config_webserv.json -------------------------------------------------------------------------------- /raspi/rf_uart/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_uart/mesh.py -------------------------------------------------------------------------------- /raspi/rf_uart/mesh_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_uart/mesh_controller.py -------------------------------------------------------------------------------- /raspi/rf_uart/mesh_controller.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_uart/mesh_controller.service -------------------------------------------------------------------------------- /raspi/rf_uart/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_uart/mqtt.py -------------------------------------------------------------------------------- /raspi/rf_uart/rf_uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_uart/rf_uart.py -------------------------------------------------------------------------------- /raspi/rf_uart/uart_failure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/rf_uart/uart_failure.md -------------------------------------------------------------------------------- /raspi/ruler/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.log 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /raspi/ruler/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/ruler/cfg.py -------------------------------------------------------------------------------- /raspi/ruler/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/ruler/config.json -------------------------------------------------------------------------------- /raspi/ruler/config_WassDell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/ruler/config_WassDell.json -------------------------------------------------------------------------------- /raspi/ruler/config_mano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/ruler/config_mano.json -------------------------------------------------------------------------------- /raspi/ruler/ruler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/ruler/ruler.py -------------------------------------------------------------------------------- /raspi/ruler/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/ruler/rules.py -------------------------------------------------------------------------------- /raspi/wemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /raspi/wemo/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/wemo/cfg.py -------------------------------------------------------------------------------- /raspi/wemo/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/wemo/config.json -------------------------------------------------------------------------------- /raspi/wemo/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/wemo/mqtt.py -------------------------------------------------------------------------------- /raspi/wemo/wemo_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/raspi/wemo/wemo_client.py -------------------------------------------------------------------------------- /run_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/run_services.sh -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | nrf52_public.c 2 | app_dfu_package.zip 3 | settings.hex 4 | -------------------------------------------------------------------------------- /tools/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/tools/cfg.py -------------------------------------------------------------------------------- /tools/off.bat: -------------------------------------------------------------------------------- 1 | cd /D "%~dp0" 2 | python -c "from uicr import *;jlink.power_off()" 3 | -------------------------------------------------------------------------------- /tools/on.bat: -------------------------------------------------------------------------------- 1 | cd /D "%~dp0" 2 | python -c "from uicr import *;jlink.power_on()" 3 | -------------------------------------------------------------------------------- /tools/package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/tools/package.bat -------------------------------------------------------------------------------- /tools/private.bat: -------------------------------------------------------------------------------- 1 | nrfutil keys generate %VAULT%\nrf52_priv.pem -------------------------------------------------------------------------------- /tools/public.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/tools/public.bat -------------------------------------------------------------------------------- /tools/read.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/tools/read.bat -------------------------------------------------------------------------------- /tools/settings.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/tools/settings.bat -------------------------------------------------------------------------------- /tools/uicr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/tools/uicr.py -------------------------------------------------------------------------------- /tools/write.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nRFMesh/nRF52_Mesh/HEAD/tools/write.bat --------------------------------------------------------------------------------