├── .gitignore ├── LICENSE ├── README.md ├── VERSION ├── css └── style.css ├── firmware ├── nrf52832-mdk │ └── ble_app_cli_nrf52832_mdk_s132.hex ├── nrf52840-mdk-usb-dongle │ ├── ble_app_cli_nrf52840_mdk_usb_dongle_app.zip │ ├── ble_app_cli_nrf52840_mdk_usb_dongle_s140.hex │ └── s140_nrf52_6.1.0_softdevice_dfu_pkg.zip ├── nrf52840-mdk │ └── ble_app_cli_nrf52840_mdk_s140.hex └── pitaya-go │ ├── pitaya_cli_v1.0.0.hex │ ├── pitaya_cli_v1.0.0.zip │ ├── pitaya_cli_v1.0.0_s140.hex │ └── s140_nrf52_6.1.0_softdevice.zip ├── img ├── favicon.png └── web-device-cli-chrome-desktop.png ├── index.html └── js ├── app.js └── hterm_all.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.0 -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/css/style.css -------------------------------------------------------------------------------- /firmware/nrf52832-mdk/ble_app_cli_nrf52832_mdk_s132.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/firmware/nrf52832-mdk/ble_app_cli_nrf52832_mdk_s132.hex -------------------------------------------------------------------------------- /firmware/nrf52840-mdk-usb-dongle/ble_app_cli_nrf52840_mdk_usb_dongle_app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/firmware/nrf52840-mdk-usb-dongle/ble_app_cli_nrf52840_mdk_usb_dongle_app.zip -------------------------------------------------------------------------------- /firmware/nrf52840-mdk-usb-dongle/ble_app_cli_nrf52840_mdk_usb_dongle_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/firmware/nrf52840-mdk-usb-dongle/ble_app_cli_nrf52840_mdk_usb_dongle_s140.hex -------------------------------------------------------------------------------- /firmware/nrf52840-mdk-usb-dongle/s140_nrf52_6.1.0_softdevice_dfu_pkg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/firmware/nrf52840-mdk-usb-dongle/s140_nrf52_6.1.0_softdevice_dfu_pkg.zip -------------------------------------------------------------------------------- /firmware/nrf52840-mdk/ble_app_cli_nrf52840_mdk_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/firmware/nrf52840-mdk/ble_app_cli_nrf52840_mdk_s140.hex -------------------------------------------------------------------------------- /firmware/pitaya-go/pitaya_cli_v1.0.0.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/firmware/pitaya-go/pitaya_cli_v1.0.0.hex -------------------------------------------------------------------------------- /firmware/pitaya-go/pitaya_cli_v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/firmware/pitaya-go/pitaya_cli_v1.0.0.zip -------------------------------------------------------------------------------- /firmware/pitaya-go/pitaya_cli_v1.0.0_s140.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/firmware/pitaya-go/pitaya_cli_v1.0.0_s140.hex -------------------------------------------------------------------------------- /firmware/pitaya-go/s140_nrf52_6.1.0_softdevice.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/firmware/pitaya-go/s140_nrf52_6.1.0_softdevice.zip -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/web-device-cli-chrome-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/img/web-device-cli-chrome-desktop.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/js/app.js -------------------------------------------------------------------------------- /js/hterm_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerdiary/web-device-cli/HEAD/js/hterm_all.js --------------------------------------------------------------------------------