├── .gitattributes ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── README.md ├── bluetooth ├── ble.py ├── readme.md ├── test.py └── test.pyc ├── config ├── README.md ├── boards.json ├── grafana │ ├── README.md │ ├── dashboards │ │ ├── Environment Sensors-1529829618258.json │ │ ├── Home Sensors-1514049986511.json │ │ ├── Home Sensors-1526927476465.json │ │ ├── Sensors status-1514050027519.json │ │ ├── Sensors status-1526927503671.json │ │ ├── nRF52 Batteries-1530295320930.json │ │ └── nRF52.json │ └── grafana.ini ├── influxdb │ ├── README.md │ ├── backup.sh │ ├── influxdb.conf │ └── restore.sh ├── mongodb │ ├── README.md │ └── mongodb.conf ├── nodes.json └── topics.json ├── dimmer ├── smt32_rfpio_firmware │ ├── .gitignore │ ├── .mbed │ ├── cf.bat │ ├── compile.bat │ ├── config_flash.bat │ ├── config_read.bat │ ├── crc.lib │ ├── debug.bat │ ├── debug_nano.json │ ├── develop_nano.json │ ├── dimm.lib │ ├── flash.bat │ ├── main.cpp │ ├── mbed-os.lib │ ├── mbed_settings.py │ └── nrf-mesh.lib └── stm32_rfnode_pulser │ ├── .gitignore │ ├── .mbed │ ├── cf.bat │ ├── compile.bat │ ├── develop_nano.json │ ├── flash.bat │ ├── main.cpp │ ├── mbed-os.lib │ └── mbed_settings.py ├── joystick_servo ├── .gitattributes ├── .gitignore ├── SConstruct ├── configfile.txt ├── main.cpp └── readme.md ├── listen.bat ├── nRF51_Beacon ├── .gitignore ├── Makefile ├── debug.bat ├── debug.jdebug ├── debug.jdebug.user ├── esb_low_power_ptx_gcc_nrf51_aa.ld ├── jlink │ ├── jlflash.jlink │ ├── power_off.jlink │ └── power_on.jlink ├── main.c ├── off.bat ├── on.bat ├── readme.md ├── sdk_config.h └── test.bat ├── nRF51_Sensors ├── .gitignore ├── .vscode │ └── settings.json ├── ap3216c │ ├── ap3216c.c │ └── ap3216c.h ├── beacon_project │ ├── .gitignore │ ├── Makefile │ ├── debug.jdebug │ ├── debug.jdebug.user │ └── main.c ├── bmp180 │ ├── README.md │ ├── bmp180.c │ ├── bmp180.h │ ├── bmp180_app.c │ └── bmp180_app.h ├── debug.bat ├── debug.jdebug ├── debug.jdebug.user ├── doc │ └── sensor_tag_sch_mpu6050.pdf ├── esb_low_power_ptx_gcc_nrf51_aa.ld ├── jlflash.jlink ├── mpu6050_app │ ├── mpu6050_app.c │ ├── mpu6050_app.h │ └── mpu60x0_register_map.h ├── readme.md ├── sdk_config.h ├── sensors_project │ ├── Makefile │ └── main.c └── twi_master_config.h ├── raspi_mesh_server ├── cpp_mqtt_ruler │ ├── .gitignore │ ├── SConstruct │ ├── configfile.txt │ ├── json.hpp │ ├── log.cpp │ ├── log.hpp │ ├── main.cpp │ ├── test │ │ ├── SConstruct │ │ └── main.cpp │ ├── utils.cpp │ └── utils.hpp ├── cpp_server │ ├── .gitignore │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ └── settings.json │ ├── LICENSE.txt │ ├── SConstruct │ ├── help.txt │ ├── main.cpp │ └── test_logs │ │ ├── 2017.01.22 - client.txt │ │ └── 2017.01.22 - server.txt ├── hci_client │ ├── .gitignore │ ├── cfg.py │ ├── client.py │ ├── config.json │ ├── config_WassDell.json │ ├── mesh_wrapper.py │ ├── mqtt_wrapper.py │ └── serial_wrapper.py ├── py_net_gateway │ ├── .gitignore │ ├── README.md │ ├── cfg.py │ ├── config_milight.json │ ├── config_wemo.json │ ├── milight_gateway.py │ ├── rasp.py │ ├── raspi_status.py │ └── wemo_client.py ├── ruler │ ├── .gitignore │ ├── __pycache__ │ │ └── cfg.cpython-36.pyc │ ├── cfg.py │ ├── config.json │ ├── ruler.py │ └── rules.py └── web_d3js_viewer │ ├── .gitignore │ ├── MovingChartExample.js │ ├── StatusPanel.js │ ├── TimeChart.js │ ├── copy_to_rpi.bat │ ├── index.html │ ├── main.js │ ├── require.js │ └── websocket.js ├── smartio ├── .gitignore ├── README.md ├── client │ ├── cmd │ │ ├── frontend.js │ │ └── index.html │ ├── frontend.js │ ├── index.html │ └── ledStyles.css ├── firmware │ ├── stm32_dongle │ │ ├── .gitignore │ │ ├── .mbed │ │ ├── Servo.lib │ │ ├── cf.bat │ │ ├── compile.bat │ │ ├── crc.lib │ │ ├── develop_nano.json │ │ ├── flash.bat │ │ ├── main.cpp │ │ ├── mbed-os.lib │ │ ├── mbed_settings.py │ │ ├── nrf-mesh.lib │ │ └── safe-uart.lib │ └── stm32_rfio │ │ ├── .gitignore │ │ ├── .mbed │ │ ├── Servo.lib │ │ ├── cf.bat │ │ ├── compile.bat │ │ ├── crc.lib │ │ ├── develop_nano.json │ │ ├── flash.bat │ │ ├── main.cpp │ │ ├── mbed-os.lib │ │ ├── mbed_settings.py │ │ ├── nrf-mesh.lib │ │ └── safe-uart.lib ├── nodejs │ ├── package.json │ ├── readme.md │ └── serial_server.js └── picpp │ ├── .gitignore │ ├── SConstruct │ ├── configfile.txt │ └── main.cpp ├── stm32_rf_dongle ├── action │ ├── .gitignore │ ├── .mbed │ ├── APDS9960.lib │ ├── cf.bat │ ├── compile.bat │ ├── config_flash.bat │ ├── config_read.bat │ ├── crc.lib │ ├── develop_nano.json │ ├── flash.bat │ ├── main.cpp │ ├── mbed-os.lib │ ├── mbed_settings.py │ ├── nrf-mesh.lib │ ├── talk │ │ ├── talk.cpp │ │ └── talk.h │ └── ws2812B.lib ├── cyclic_ping │ ├── .gitignore │ ├── .mbed │ ├── cf.bat │ ├── compile.bat │ ├── crc.lib │ ├── develop_nano.json │ ├── flash.bat │ ├── main.cpp │ ├── mbed-os.lib │ ├── mbed_settings.py │ └── nrf-mesh.lib ├── host_controller_interface │ ├── .gitignore │ ├── .mbed │ ├── cf.bat │ ├── compile.bat │ ├── config_flash.bat │ ├── config_read.bat │ ├── crc.lib │ ├── develop_nano.json │ ├── flash.bat │ ├── main.cpp │ ├── mbed-os.lib │ ├── mbed_settings.py │ ├── nrf-mesh.lib │ └── safe-uart.lib ├── rf_bridge │ ├── .gitignore │ ├── .mbed │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ └── settings.json │ ├── APDS9960.lib │ ├── BME280.lib │ ├── cf.bat │ ├── compile.bat │ ├── config_flash.bat │ ├── config_read.bat │ ├── crc.lib │ ├── develop_nano.json │ ├── flash.bat │ ├── main.cpp │ ├── mbed-os.lib │ ├── mbed_settings.py │ ├── nrf-mesh.lib │ └── ws2812B.lib ├── rf_heater │ ├── .gitignore │ ├── .mbed │ ├── cf.bat │ ├── compile.bat │ ├── config_flash.bat │ ├── config_read.bat │ ├── crc.lib │ ├── develop_nano.json │ ├── flash.bat │ ├── main.cpp │ ├── mbed-os.lib │ ├── mbed_settings.py │ └── nrf-mesh.lib ├── rf_sniffer │ ├── .gitignore │ ├── .mbed │ ├── cf.bat │ ├── compile.bat │ ├── config_flash.bat │ ├── config_read.bat │ ├── crc.lib │ ├── develop_nano.json │ ├── flash.bat │ ├── main.cpp │ ├── mbed-os.lib │ ├── mbed_settings.py │ ├── nrf-mesh.lib │ └── safe-uart.lib ├── rf_timing.txt └── rf_uart_interface │ ├── .gitignore │ ├── .mbed │ ├── cf.bat │ ├── compile.bat │ ├── config_flash.bat │ ├── config_read.bat │ ├── crc.lib │ ├── develop_nano.json │ ├── flash.bat │ ├── main.cpp │ ├── mbed-os.lib │ ├── mbed_settings.py │ ├── nrf-mesh.lib │ └── safe-uart.lib ├── tools ├── .gitignore ├── cfg.py ├── off.bat ├── on.bat ├── package.bat ├── private.bat ├── public.bat ├── read.bat ├── uicr.py ├── uicr_map.json └── write.bat └── webdash.graphml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/README.md -------------------------------------------------------------------------------- /bluetooth/ble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/bluetooth/ble.py -------------------------------------------------------------------------------- /bluetooth/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/bluetooth/readme.md -------------------------------------------------------------------------------- /bluetooth/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/bluetooth/test.py -------------------------------------------------------------------------------- /bluetooth/test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/bluetooth/test.pyc -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/README.md -------------------------------------------------------------------------------- /config/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/boards.json -------------------------------------------------------------------------------- /config/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/grafana/README.md -------------------------------------------------------------------------------- /config/grafana/dashboards/Environment Sensors-1529829618258.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/grafana/dashboards/Environment Sensors-1529829618258.json -------------------------------------------------------------------------------- /config/grafana/dashboards/Home Sensors-1514049986511.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/grafana/dashboards/Home Sensors-1514049986511.json -------------------------------------------------------------------------------- /config/grafana/dashboards/Home Sensors-1526927476465.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/grafana/dashboards/Home Sensors-1526927476465.json -------------------------------------------------------------------------------- /config/grafana/dashboards/Sensors status-1514050027519.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/grafana/dashboards/Sensors status-1514050027519.json -------------------------------------------------------------------------------- /config/grafana/dashboards/Sensors status-1526927503671.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/grafana/dashboards/Sensors status-1526927503671.json -------------------------------------------------------------------------------- /config/grafana/dashboards/nRF52 Batteries-1530295320930.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/grafana/dashboards/nRF52 Batteries-1530295320930.json -------------------------------------------------------------------------------- /config/grafana/dashboards/nRF52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/grafana/dashboards/nRF52.json -------------------------------------------------------------------------------- /config/grafana/grafana.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/grafana/grafana.ini -------------------------------------------------------------------------------- /config/influxdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/influxdb/README.md -------------------------------------------------------------------------------- /config/influxdb/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/influxdb/backup.sh -------------------------------------------------------------------------------- /config/influxdb/influxdb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/influxdb/influxdb.conf -------------------------------------------------------------------------------- /config/influxdb/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/influxdb/restore.sh -------------------------------------------------------------------------------- /config/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/mongodb/README.md -------------------------------------------------------------------------------- /config/mongodb/mongodb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/mongodb/mongodb.conf -------------------------------------------------------------------------------- /config/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/nodes.json -------------------------------------------------------------------------------- /config/topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/config/topics.json -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/.gitignore: -------------------------------------------------------------------------------- 1 | .temp/ 2 | BUILD/ 3 | *.pyc 4 | mbed-os/ 5 | nrf-mesh/ 6 | crc/ 7 | dimm/ 8 | .settings/ 9 | .vscode/ 10 | -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/.mbed: -------------------------------------------------------------------------------- 1 | TARGET=BLUEPILL_F103C8 2 | ROOT=. 3 | -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/cf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/smt32_rfpio_firmware/cf.bat -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/smt32_rfpio_firmware/compile.bat -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/config_flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/smt32_rfpio_firmware/config_flash.bat -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/config_read.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/smt32_rfpio_firmware/config_read.bat -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/crc.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/crc/#22593a25b890efbe1a6a6482d58237c28a0d94ea 2 | -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/smt32_rfpio_firmware/debug.bat -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/debug_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/smt32_rfpio_firmware/debug_nano.json -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/develop_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/smt32_rfpio_firmware/develop_nano.json -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/dimm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/smt32_rfpio_firmware/dimm.lib -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/smt32_rfpio_firmware/flash.bat -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/smt32_rfpio_firmware/main.cpp -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/mbed-os.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/mbed-os/#4153c4a69a8c9963a00c28e6b28150049e0f1a30 2 | -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/smt32_rfpio_firmware/mbed_settings.py -------------------------------------------------------------------------------- /dimmer/smt32_rfpio_firmware/nrf-mesh.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/nrf-mesh/#5a003180df99cc3250a238e561e6e7f2d4bd87f7 2 | -------------------------------------------------------------------------------- /dimmer/stm32_rfnode_pulser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/stm32_rfnode_pulser/.gitignore -------------------------------------------------------------------------------- /dimmer/stm32_rfnode_pulser/.mbed: -------------------------------------------------------------------------------- 1 | TARGET=BLUEPILL_F103C8 2 | ROOT=. 3 | -------------------------------------------------------------------------------- /dimmer/stm32_rfnode_pulser/cf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/stm32_rfnode_pulser/cf.bat -------------------------------------------------------------------------------- /dimmer/stm32_rfnode_pulser/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/stm32_rfnode_pulser/compile.bat -------------------------------------------------------------------------------- /dimmer/stm32_rfnode_pulser/develop_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/stm32_rfnode_pulser/develop_nano.json -------------------------------------------------------------------------------- /dimmer/stm32_rfnode_pulser/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/stm32_rfnode_pulser/flash.bat -------------------------------------------------------------------------------- /dimmer/stm32_rfnode_pulser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/stm32_rfnode_pulser/main.cpp -------------------------------------------------------------------------------- /dimmer/stm32_rfnode_pulser/mbed-os.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/mbed-os/#4153c4a69a8c9963a00c28e6b28150049e0f1a30 2 | -------------------------------------------------------------------------------- /dimmer/stm32_rfnode_pulser/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/dimmer/stm32_rfnode_pulser/mbed_settings.py -------------------------------------------------------------------------------- /joystick_servo/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/joystick_servo/.gitattributes -------------------------------------------------------------------------------- /joystick_servo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/joystick_servo/.gitignore -------------------------------------------------------------------------------- /joystick_servo/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/joystick_servo/SConstruct -------------------------------------------------------------------------------- /joystick_servo/configfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/joystick_servo/configfile.txt -------------------------------------------------------------------------------- /joystick_servo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/joystick_servo/main.cpp -------------------------------------------------------------------------------- /joystick_servo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/joystick_servo/readme.md -------------------------------------------------------------------------------- /listen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/listen.bat -------------------------------------------------------------------------------- /nRF51_Beacon/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /nRF51_Beacon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Beacon/Makefile -------------------------------------------------------------------------------- /nRF51_Beacon/debug.bat: -------------------------------------------------------------------------------- 1 | JLink.exe -device NRF51822_XXAA -SelectEmuBySN %SEG_JLEDU% -If SWD -Speed 4000 2 | -------------------------------------------------------------------------------- /nRF51_Beacon/debug.jdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Beacon/debug.jdebug -------------------------------------------------------------------------------- /nRF51_Beacon/debug.jdebug.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Beacon/debug.jdebug.user -------------------------------------------------------------------------------- /nRF51_Beacon/esb_low_power_ptx_gcc_nrf51_aa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Beacon/esb_low_power_ptx_gcc_nrf51_aa.ld -------------------------------------------------------------------------------- /nRF51_Beacon/jlink/jlflash.jlink: -------------------------------------------------------------------------------- 1 | loadfile _build\nrf51822_xxaa.hex 2 | exit 3 | -------------------------------------------------------------------------------- /nRF51_Beacon/jlink/power_off.jlink: -------------------------------------------------------------------------------- 1 | power off 2 | exit 3 | -------------------------------------------------------------------------------- /nRF51_Beacon/jlink/power_on.jlink: -------------------------------------------------------------------------------- 1 | power on 2 | exit 3 | -------------------------------------------------------------------------------- /nRF51_Beacon/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Beacon/main.c -------------------------------------------------------------------------------- /nRF51_Beacon/off.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Beacon/off.bat -------------------------------------------------------------------------------- /nRF51_Beacon/on.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Beacon/on.bat -------------------------------------------------------------------------------- /nRF51_Beacon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Beacon/readme.md -------------------------------------------------------------------------------- /nRF51_Beacon/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Beacon/sdk_config.h -------------------------------------------------------------------------------- /nRF51_Beacon/test.bat: -------------------------------------------------------------------------------- 1 | nrfjprog --readregs -f nrf52 2 | -------------------------------------------------------------------------------- /nRF51_Sensors/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /nRF51_Sensors/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/.vscode/settings.json -------------------------------------------------------------------------------- /nRF51_Sensors/ap3216c/ap3216c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/ap3216c/ap3216c.c -------------------------------------------------------------------------------- /nRF51_Sensors/ap3216c/ap3216c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/ap3216c/ap3216c.h -------------------------------------------------------------------------------- /nRF51_Sensors/beacon_project/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /nRF51_Sensors/beacon_project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/beacon_project/Makefile -------------------------------------------------------------------------------- /nRF51_Sensors/beacon_project/debug.jdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/beacon_project/debug.jdebug -------------------------------------------------------------------------------- /nRF51_Sensors/beacon_project/debug.jdebug.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/beacon_project/debug.jdebug.user -------------------------------------------------------------------------------- /nRF51_Sensors/beacon_project/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/beacon_project/main.c -------------------------------------------------------------------------------- /nRF51_Sensors/bmp180/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/bmp180/README.md -------------------------------------------------------------------------------- /nRF51_Sensors/bmp180/bmp180.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/bmp180/bmp180.c -------------------------------------------------------------------------------- /nRF51_Sensors/bmp180/bmp180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/bmp180/bmp180.h -------------------------------------------------------------------------------- /nRF51_Sensors/bmp180/bmp180_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/bmp180/bmp180_app.c -------------------------------------------------------------------------------- /nRF51_Sensors/bmp180/bmp180_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/bmp180/bmp180_app.h -------------------------------------------------------------------------------- /nRF51_Sensors/debug.bat: -------------------------------------------------------------------------------- 1 | JLink.exe -device NRF51822_XXAA -SelectEmuBySN %SEG_JLEDU% -If SWD -Speed 4000 2 | -------------------------------------------------------------------------------- /nRF51_Sensors/debug.jdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/debug.jdebug -------------------------------------------------------------------------------- /nRF51_Sensors/debug.jdebug.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/debug.jdebug.user -------------------------------------------------------------------------------- /nRF51_Sensors/doc/sensor_tag_sch_mpu6050.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/doc/sensor_tag_sch_mpu6050.pdf -------------------------------------------------------------------------------- /nRF51_Sensors/esb_low_power_ptx_gcc_nrf51_aa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/esb_low_power_ptx_gcc_nrf51_aa.ld -------------------------------------------------------------------------------- /nRF51_Sensors/jlflash.jlink: -------------------------------------------------------------------------------- 1 | loadfile _build\nrf51822_xxaa.hex 2 | exit 3 | -------------------------------------------------------------------------------- /nRF51_Sensors/mpu6050_app/mpu6050_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/mpu6050_app/mpu6050_app.c -------------------------------------------------------------------------------- /nRF51_Sensors/mpu6050_app/mpu6050_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/mpu6050_app/mpu6050_app.h -------------------------------------------------------------------------------- /nRF51_Sensors/mpu6050_app/mpu60x0_register_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/mpu6050_app/mpu60x0_register_map.h -------------------------------------------------------------------------------- /nRF51_Sensors/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/readme.md -------------------------------------------------------------------------------- /nRF51_Sensors/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/sdk_config.h -------------------------------------------------------------------------------- /nRF51_Sensors/sensors_project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/sensors_project/Makefile -------------------------------------------------------------------------------- /nRF51_Sensors/sensors_project/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/sensors_project/main.c -------------------------------------------------------------------------------- /nRF51_Sensors/twi_master_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/nRF51_Sensors/twi_master_config.h -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_mqtt_ruler/.gitignore: -------------------------------------------------------------------------------- 1 | mqtt_ruler 2 | -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_mqtt_ruler/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_mqtt_ruler/SConstruct -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_mqtt_ruler/configfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_mqtt_ruler/configfile.txt -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_mqtt_ruler/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_mqtt_ruler/json.hpp -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_mqtt_ruler/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_mqtt_ruler/log.cpp -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_mqtt_ruler/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_mqtt_ruler/log.hpp -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_mqtt_ruler/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_mqtt_ruler/main.cpp -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_mqtt_ruler/test/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_mqtt_ruler/test/SConstruct -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_mqtt_ruler/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_mqtt_ruler/test/main.cpp -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_mqtt_ruler/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_mqtt_ruler/utils.cpp -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_mqtt_ruler/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_mqtt_ruler/utils.hpp -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_server/.gitignore: -------------------------------------------------------------------------------- 1 | streamer 2 | -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_server/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_server/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_server/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_server/.vscode/settings.json -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_server/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_server/LICENSE.txt -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_server/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_server/SConstruct -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_server/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_server/help.txt -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_server/main.cpp -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_server/test_logs/2017.01.22 - client.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_server/test_logs/2017.01.22 - client.txt -------------------------------------------------------------------------------- /raspi_mesh_server/cpp_server/test_logs/2017.01.22 - server.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/cpp_server/test_logs/2017.01.22 - server.txt -------------------------------------------------------------------------------- /raspi_mesh_server/hci_client/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /raspi_mesh_server/hci_client/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/hci_client/cfg.py -------------------------------------------------------------------------------- /raspi_mesh_server/hci_client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/hci_client/client.py -------------------------------------------------------------------------------- /raspi_mesh_server/hci_client/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/hci_client/config.json -------------------------------------------------------------------------------- /raspi_mesh_server/hci_client/config_WassDell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/hci_client/config_WassDell.json -------------------------------------------------------------------------------- /raspi_mesh_server/hci_client/mesh_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/hci_client/mesh_wrapper.py -------------------------------------------------------------------------------- /raspi_mesh_server/hci_client/mqtt_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/hci_client/mqtt_wrapper.py -------------------------------------------------------------------------------- /raspi_mesh_server/hci_client/serial_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/hci_client/serial_wrapper.py -------------------------------------------------------------------------------- /raspi_mesh_server/py_net_gateway/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /raspi_mesh_server/py_net_gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/py_net_gateway/README.md -------------------------------------------------------------------------------- /raspi_mesh_server/py_net_gateway/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/py_net_gateway/cfg.py -------------------------------------------------------------------------------- /raspi_mesh_server/py_net_gateway/config_milight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/py_net_gateway/config_milight.json -------------------------------------------------------------------------------- /raspi_mesh_server/py_net_gateway/config_wemo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/py_net_gateway/config_wemo.json -------------------------------------------------------------------------------- /raspi_mesh_server/py_net_gateway/milight_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/py_net_gateway/milight_gateway.py -------------------------------------------------------------------------------- /raspi_mesh_server/py_net_gateway/rasp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/py_net_gateway/rasp.py -------------------------------------------------------------------------------- /raspi_mesh_server/py_net_gateway/raspi_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/py_net_gateway/raspi_status.py -------------------------------------------------------------------------------- /raspi_mesh_server/py_net_gateway/wemo_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/py_net_gateway/wemo_client.py -------------------------------------------------------------------------------- /raspi_mesh_server/ruler/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /raspi_mesh_server/ruler/__pycache__/cfg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/ruler/__pycache__/cfg.cpython-36.pyc -------------------------------------------------------------------------------- /raspi_mesh_server/ruler/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/ruler/cfg.py -------------------------------------------------------------------------------- /raspi_mesh_server/ruler/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/ruler/config.json -------------------------------------------------------------------------------- /raspi_mesh_server/ruler/ruler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/ruler/ruler.py -------------------------------------------------------------------------------- /raspi_mesh_server/ruler/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/ruler/rules.py -------------------------------------------------------------------------------- /raspi_mesh_server/web_d3js_viewer/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /raspi_mesh_server/web_d3js_viewer/MovingChartExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/web_d3js_viewer/MovingChartExample.js -------------------------------------------------------------------------------- /raspi_mesh_server/web_d3js_viewer/StatusPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/web_d3js_viewer/StatusPanel.js -------------------------------------------------------------------------------- /raspi_mesh_server/web_d3js_viewer/TimeChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/web_d3js_viewer/TimeChart.js -------------------------------------------------------------------------------- /raspi_mesh_server/web_d3js_viewer/copy_to_rpi.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/web_d3js_viewer/copy_to_rpi.bat -------------------------------------------------------------------------------- /raspi_mesh_server/web_d3js_viewer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/web_d3js_viewer/index.html -------------------------------------------------------------------------------- /raspi_mesh_server/web_d3js_viewer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/web_d3js_viewer/main.js -------------------------------------------------------------------------------- /raspi_mesh_server/web_d3js_viewer/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/web_d3js_viewer/require.js -------------------------------------------------------------------------------- /raspi_mesh_server/web_d3js_viewer/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/raspi_mesh_server/web_d3js_viewer/websocket.js -------------------------------------------------------------------------------- /smartio/.gitignore: -------------------------------------------------------------------------------- 1 | nodejs/node_modules/ 2 | -------------------------------------------------------------------------------- /smartio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/README.md -------------------------------------------------------------------------------- /smartio/client/cmd/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/client/cmd/frontend.js -------------------------------------------------------------------------------- /smartio/client/cmd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/client/cmd/index.html -------------------------------------------------------------------------------- /smartio/client/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/client/frontend.js -------------------------------------------------------------------------------- /smartio/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/client/index.html -------------------------------------------------------------------------------- /smartio/client/ledStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/client/ledStyles.css -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_dongle/.gitignore -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/.mbed: -------------------------------------------------------------------------------- 1 | TARGET=BLUEPILL_F103C8 2 | ROOT=. 3 | -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/Servo.lib: -------------------------------------------------------------------------------- 1 | https://developer.mbed.org/users/simon/code/Servo/#36b69a7ced07 2 | -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/cf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_dongle/cf.bat -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_dongle/compile.bat -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/crc.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/crc/#347fd1235c1306c9832b757d9378a7ac13ec6c49 2 | -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/develop_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_dongle/develop_nano.json -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_dongle/flash.bat -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_dongle/main.cpp -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/mbed-os.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/mbed-os/#4153c4a69a8c9963a00c28e6b28150049e0f1a30 2 | -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_dongle/mbed_settings.py -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/nrf-mesh.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_dongle/nrf-mesh.lib -------------------------------------------------------------------------------- /smartio/firmware/stm32_dongle/safe-uart.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_dongle/safe-uart.lib -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_rfio/.gitignore -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/.mbed: -------------------------------------------------------------------------------- 1 | TARGET=BLUEPILL_F103C8 2 | ROOT=. 3 | -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/Servo.lib: -------------------------------------------------------------------------------- 1 | https://developer.mbed.org/users/simon/code/Servo/#36b69a7ced07 2 | -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/cf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_rfio/cf.bat -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_rfio/compile.bat -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/crc.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/crc/#347fd1235c1306c9832b757d9378a7ac13ec6c49 2 | -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/develop_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_rfio/develop_nano.json -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_rfio/flash.bat -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_rfio/main.cpp -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/mbed-os.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/mbed-os/#4153c4a69a8c9963a00c28e6b28150049e0f1a30 2 | -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_rfio/mbed_settings.py -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/nrf-mesh.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_rfio/nrf-mesh.lib -------------------------------------------------------------------------------- /smartio/firmware/stm32_rfio/safe-uart.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/firmware/stm32_rfio/safe-uart.lib -------------------------------------------------------------------------------- /smartio/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/nodejs/package.json -------------------------------------------------------------------------------- /smartio/nodejs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/nodejs/readme.md -------------------------------------------------------------------------------- /smartio/nodejs/serial_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/nodejs/serial_server.js -------------------------------------------------------------------------------- /smartio/picpp/.gitignore: -------------------------------------------------------------------------------- 1 | rfpio 2 | -------------------------------------------------------------------------------- /smartio/picpp/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/picpp/SConstruct -------------------------------------------------------------------------------- /smartio/picpp/configfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/picpp/configfile.txt -------------------------------------------------------------------------------- /smartio/picpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/smartio/picpp/main.cpp -------------------------------------------------------------------------------- /stm32_rf_dongle/action/.gitignore: -------------------------------------------------------------------------------- 1 | .temp/ 2 | BUILD/ 3 | *.pyc 4 | mbed-os/ 5 | nrf-mesh/ 6 | crc/ 7 | APDS9960/ 8 | ws2812B/ 9 | BME280/ 10 | -------------------------------------------------------------------------------- /stm32_rf_dongle/action/.mbed: -------------------------------------------------------------------------------- 1 | TARGET=BLUEPILL_F103C8 2 | ROOT=. 3 | -------------------------------------------------------------------------------- /stm32_rf_dongle/action/APDS9960.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/APDS9960/#7dfb597d66420b47cdd4a2574cdfa69d1fb083eb 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/action/cf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/action/cf.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/action/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/action/compile.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/action/config_flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/action/config_flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/action/config_read.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/action/config_read.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/action/crc.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/crc/#22593a25b890efbe1a6a6482d58237c28a0d94ea 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/action/develop_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/action/develop_nano.json -------------------------------------------------------------------------------- /stm32_rf_dongle/action/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/action/flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/action/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/action/main.cpp -------------------------------------------------------------------------------- /stm32_rf_dongle/action/mbed-os.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/mbed-os/#4153c4a69a8c9963a00c28e6b28150049e0f1a30 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/action/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/action/mbed_settings.py -------------------------------------------------------------------------------- /stm32_rf_dongle/action/nrf-mesh.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/action/nrf-mesh.lib -------------------------------------------------------------------------------- /stm32_rf_dongle/action/talk/talk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/action/talk/talk.cpp -------------------------------------------------------------------------------- /stm32_rf_dongle/action/talk/talk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/action/talk/talk.h -------------------------------------------------------------------------------- /stm32_rf_dongle/action/ws2812B.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/ws2812B/#6a87648f43924991bd136a59007234b826f35e2c 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/cyclic_ping/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/cyclic_ping/.gitignore -------------------------------------------------------------------------------- /stm32_rf_dongle/cyclic_ping/.mbed: -------------------------------------------------------------------------------- 1 | TARGET=BLUEPILL_F103C8 2 | ROOT=. 3 | -------------------------------------------------------------------------------- /stm32_rf_dongle/cyclic_ping/cf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/cyclic_ping/cf.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/cyclic_ping/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/cyclic_ping/compile.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/cyclic_ping/crc.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/crc/#22593a25b890efbe1a6a6482d58237c28a0d94ea 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/cyclic_ping/develop_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/cyclic_ping/develop_nano.json -------------------------------------------------------------------------------- /stm32_rf_dongle/cyclic_ping/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/cyclic_ping/flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/cyclic_ping/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/cyclic_ping/main.cpp -------------------------------------------------------------------------------- /stm32_rf_dongle/cyclic_ping/mbed-os.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/mbed-os/#4153c4a69a8c9963a00c28e6b28150049e0f1a30 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/cyclic_ping/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/cyclic_ping/mbed_settings.py -------------------------------------------------------------------------------- /stm32_rf_dongle/cyclic_ping/nrf-mesh.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/cyclic_ping/nrf-mesh.lib -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/.gitignore: -------------------------------------------------------------------------------- 1 | .temp/ 2 | BUILD/ 3 | *.pyc 4 | mbed-os/ 5 | nrf-mesh/ 6 | safe-uart/ 7 | crc/ 8 | .settings/ 9 | .vscode/ 10 | -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/.mbed: -------------------------------------------------------------------------------- 1 | TARGET=BLUEPILL_F103C8 2 | ROOT=. 3 | -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/cf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/host_controller_interface/cf.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/host_controller_interface/compile.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/config_flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/host_controller_interface/config_flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/config_read.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/host_controller_interface/config_read.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/crc.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/crc/#22593a25b890efbe1a6a6482d58237c28a0d94ea 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/develop_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/host_controller_interface/develop_nano.json -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/host_controller_interface/flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/host_controller_interface/main.cpp -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/mbed-os.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/mbed-os/#4153c4a69a8c9963a00c28e6b28150049e0f1a30 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/host_controller_interface/mbed_settings.py -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/nrf-mesh.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/host_controller_interface/nrf-mesh.lib -------------------------------------------------------------------------------- /stm32_rf_dongle/host_controller_interface/safe-uart.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/host_controller_interface/safe-uart.lib -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/.gitignore: -------------------------------------------------------------------------------- 1 | .temp/ 2 | BUILD/ 3 | *.pyc 4 | mbed-os/ 5 | nrf-mesh/ 6 | crc/ 7 | APDS_9960/ 8 | ws2812B/ 9 | BME280/ 10 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/.mbed: -------------------------------------------------------------------------------- 1 | TARGET=BLUEPILL_F103C8 2 | ROOT=. 3 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_bridge/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_bridge/.vscode/settings.json -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/APDS9960.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/APDS9960/#7dfb597d66420b47cdd4a2574cdfa69d1fb083eb 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/BME280.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/bme280#c685f5e95d869f3788700dafa58ca21846208f57 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/cf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_bridge/cf.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_bridge/compile.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/config_flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_bridge/config_flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/config_read.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_bridge/config_read.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/crc.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/crc/#22593a25b890efbe1a6a6482d58237c28a0d94ea 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/develop_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_bridge/develop_nano.json -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_bridge/flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_bridge/main.cpp -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/mbed-os.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/mbed-os/#4153c4a69a8c9963a00c28e6b28150049e0f1a30 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_bridge/mbed_settings.py -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/nrf-mesh.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/nrf-mesh/#3788f4769a9d0aec2c886345ac394c2de7fe272f 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_bridge/ws2812B.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/ws2812B/#6a87648f43924991bd136a59007234b826f35e2c 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_heater/.gitignore -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/.mbed: -------------------------------------------------------------------------------- 1 | TARGET=BLUEPILL_F103C8 2 | ROOT=. 3 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/cf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_heater/cf.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_heater/compile.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/config_flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_heater/config_flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/config_read.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_heater/config_read.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/crc.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/crc/#22593a25b890efbe1a6a6482d58237c28a0d94ea 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/develop_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_heater/develop_nano.json -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_heater/flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_heater/main.cpp -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/mbed-os.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/mbed-os/#4153c4a69a8c9963a00c28e6b28150049e0f1a30 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_heater/mbed_settings.py -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_heater/nrf-mesh.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_heater/nrf-mesh.lib -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_sniffer/.gitignore -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/.mbed: -------------------------------------------------------------------------------- 1 | TARGET=BLUEPILL_F103C8 2 | ROOT=. 3 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/cf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_sniffer/cf.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_sniffer/compile.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/config_flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_sniffer/config_flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/config_read.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_sniffer/config_read.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/crc.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/crc/#22593a25b890efbe1a6a6482d58237c28a0d94ea 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/develop_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_sniffer/develop_nano.json -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_sniffer/flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_sniffer/main.cpp -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/mbed-os.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/mbed-os/#4153c4a69a8c9963a00c28e6b28150049e0f1a30 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_sniffer/mbed_settings.py -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/nrf-mesh.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_sniffer/nrf-mesh.lib -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_sniffer/safe-uart.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_sniffer/safe-uart.lib -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_timing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_timing.txt -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_uart_interface/.gitignore -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/.mbed: -------------------------------------------------------------------------------- 1 | TARGET=BLUEPILL_F103C8 2 | ROOT=. 3 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/cf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_uart_interface/cf.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_uart_interface/compile.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/config_flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_uart_interface/config_flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/config_read.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_uart_interface/config_read.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/crc.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/crc/#22593a25b890efbe1a6a6482d58237c28a0d94ea 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/develop_nano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_uart_interface/develop_nano.json -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_uart_interface/flash.bat -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_uart_interface/main.cpp -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/mbed-os.lib: -------------------------------------------------------------------------------- 1 | https://github.com/STM32Libs/mbed-os/#4153c4a69a8c9963a00c28e6b28150049e0f1a30 2 | -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_uart_interface/mbed_settings.py -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/nrf-mesh.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_uart_interface/nrf-mesh.lib -------------------------------------------------------------------------------- /stm32_rf_dongle/rf_uart_interface/safe-uart.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/stm32_rf_dongle/rf_uart_interface/safe-uart.lib -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | nrf52_public.c 2 | app_dfu_package.zip 3 | settings.hex 4 | -------------------------------------------------------------------------------- /tools/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/tools/cfg.py -------------------------------------------------------------------------------- /tools/off.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/tools/off.bat -------------------------------------------------------------------------------- /tools/on.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/tools/on.bat -------------------------------------------------------------------------------- /tools/package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/tools/package.bat -------------------------------------------------------------------------------- /tools/private.bat: -------------------------------------------------------------------------------- 1 | nrfutil keys generate %VAULT%\nrf52_priv.pem -------------------------------------------------------------------------------- /tools/public.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/tools/public.bat -------------------------------------------------------------------------------- /tools/read.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/tools/read.bat -------------------------------------------------------------------------------- /tools/uicr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/tools/uicr.py -------------------------------------------------------------------------------- /tools/uicr_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/tools/uicr_map.json -------------------------------------------------------------------------------- /tools/write.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/tools/write.bat -------------------------------------------------------------------------------- /webdash.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSmartMesh/IoT_Frameworks/HEAD/webdash.graphml --------------------------------------------------------------------------------