├── .github └── workflows │ └── projects.yml ├── .gitignore ├── README.md ├── docs ├── css │ └── style.css ├── framework │ ├── arduino.md │ ├── images │ │ └── webthings_framework_banner.png │ ├── introduction.md │ ├── java.md │ ├── micropython.md │ ├── node-js.md │ ├── python.md │ └── rust.md ├── gateway │ ├── floorplan.md │ ├── hacking.md │ ├── images │ │ ├── action_and_events_things.png │ │ ├── action_input.png │ │ ├── add-ons_screen.png │ │ ├── add_add-on.png │ │ ├── add_thing_by_url.png │ │ ├── add_thing_screen-new_things.png │ │ ├── add_thing_screen-scanning.png │ │ ├── add_user.png │ │ ├── assembly.png │ │ ├── authorisation_request.png │ │ ├── authorisations.png │ │ ├── choose_subdomain.png │ │ ├── components.png │ │ ├── confirm_remove_thing.png │ │ ├── connect_wifi.png │ │ ├── create_user.png │ │ ├── developer_settings.png │ │ ├── domain_settings.png │ │ ├── edit_rule_button.png │ │ ├── edit_thing.png │ │ ├── edit_thing_option.png │ │ ├── edit_user-two-factor_auth1.png │ │ ├── edit_user-two-factor_auth2.png │ │ ├── edit_user-two_factor_auth0.png │ │ ├── edit_user.png │ │ ├── empty_things_screen.png │ │ ├── etcher_screenshot.png │ │ ├── event_log.png │ │ ├── event_log_option.png │ │ ├── experiments.png │ │ ├── floorplan-edit-arranged.png │ │ ├── floorplan-edit-unarranged.png │ │ ├── floorplan-missing.png │ │ ├── floorplan-uploaded-unarranged.png │ │ ├── floorplan_view-lights_on.png │ │ ├── floorplan_view.png │ │ ├── localisation_settings.png │ │ ├── log_in.png │ │ ├── log_out.png │ │ ├── logs_screen-empty.png │ │ ├── main_menu-floorplan.png │ │ ├── main_menu-logs.png │ │ ├── main_menu-rules-selected.png │ │ ├── main_menu-settings.png │ │ ├── network_settings-ethernet-automatic.png │ │ ├── network_settings-ethernet-manual.png │ │ ├── network_settings-wifi.png │ │ ├── network_settings-wifi_password.png │ │ ├── network_settings.png │ │ ├── new_log.png │ │ ├── new_rule-and.png │ │ ├── new_rule-choose-input.png │ │ ├── new_rule-choose_output.png │ │ ├── new_rule-complete.png │ │ ├── new_rule-dragging-input.png │ │ ├── new_rule-dragging_output.png │ │ ├── new_rule-or.png │ │ ├── new_rule-while.png │ │ ├── new_rule.png │ │ ├── remove_log-confirm.png │ │ ├── remove_log_option.png │ │ ├── remove_rule-confirm.png │ │ ├── remove_thing_option.png │ │ ├── rules_screen-empty.png │ │ ├── rules_screen-invalid_rule.png │ │ ├── rules_screen-multiple_rules.png │ │ ├── rules_screen-single_rule.png │ │ ├── settings_view.png │ │ ├── thing_detail-colored_light.png │ │ ├── thing_detail-dimmable_color_light.png │ │ ├── thing_detail.png │ │ ├── things_screen-single_thing.png │ │ ├── things_screen.png │ │ ├── updates_screen.png │ │ ├── users_screen.png │ │ ├── view_log-boolean.png │ │ ├── view_log-populated.png │ │ ├── view_logs-multiple_logs.png │ │ ├── view_logs.png │ │ ├── view_users-multiple.png │ │ └── wifi_ssid.png │ ├── installation.md │ ├── introduction.md │ ├── log-in.md │ ├── log-out.md │ ├── logs.md │ ├── rules.md │ ├── settings.md │ ├── setup.md │ ├── supported-hardware.md │ └── things.md ├── images │ └── logo.svg ├── index.md └── wot │ ├── architecture.md │ ├── discovery.md │ ├── images │ └── web_of_things_illustration.png │ ├── introduction.md │ ├── profiles.md │ ├── thing-description.md │ └── web-thing-protocol.md └── mkdocs.yml /.github/workflows/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/.github/workflows/projects.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /Gemfile.lock 2 | /site/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/README.md -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/framework/arduino.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/framework/arduino.md -------------------------------------------------------------------------------- /docs/framework/images/webthings_framework_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/framework/images/webthings_framework_banner.png -------------------------------------------------------------------------------- /docs/framework/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/framework/introduction.md -------------------------------------------------------------------------------- /docs/framework/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/framework/java.md -------------------------------------------------------------------------------- /docs/framework/micropython.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/framework/micropython.md -------------------------------------------------------------------------------- /docs/framework/node-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/framework/node-js.md -------------------------------------------------------------------------------- /docs/framework/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/framework/python.md -------------------------------------------------------------------------------- /docs/framework/rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/framework/rust.md -------------------------------------------------------------------------------- /docs/gateway/floorplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/floorplan.md -------------------------------------------------------------------------------- /docs/gateway/hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/hacking.md -------------------------------------------------------------------------------- /docs/gateway/images/action_and_events_things.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/action_and_events_things.png -------------------------------------------------------------------------------- /docs/gateway/images/action_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/action_input.png -------------------------------------------------------------------------------- /docs/gateway/images/add-ons_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/add-ons_screen.png -------------------------------------------------------------------------------- /docs/gateway/images/add_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/add_add-on.png -------------------------------------------------------------------------------- /docs/gateway/images/add_thing_by_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/add_thing_by_url.png -------------------------------------------------------------------------------- /docs/gateway/images/add_thing_screen-new_things.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/add_thing_screen-new_things.png -------------------------------------------------------------------------------- /docs/gateway/images/add_thing_screen-scanning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/add_thing_screen-scanning.png -------------------------------------------------------------------------------- /docs/gateway/images/add_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/add_user.png -------------------------------------------------------------------------------- /docs/gateway/images/assembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/assembly.png -------------------------------------------------------------------------------- /docs/gateway/images/authorisation_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/authorisation_request.png -------------------------------------------------------------------------------- /docs/gateway/images/authorisations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/authorisations.png -------------------------------------------------------------------------------- /docs/gateway/images/choose_subdomain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/choose_subdomain.png -------------------------------------------------------------------------------- /docs/gateway/images/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/components.png -------------------------------------------------------------------------------- /docs/gateway/images/confirm_remove_thing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/confirm_remove_thing.png -------------------------------------------------------------------------------- /docs/gateway/images/connect_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/connect_wifi.png -------------------------------------------------------------------------------- /docs/gateway/images/create_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/create_user.png -------------------------------------------------------------------------------- /docs/gateway/images/developer_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/developer_settings.png -------------------------------------------------------------------------------- /docs/gateway/images/domain_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/domain_settings.png -------------------------------------------------------------------------------- /docs/gateway/images/edit_rule_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/edit_rule_button.png -------------------------------------------------------------------------------- /docs/gateway/images/edit_thing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/edit_thing.png -------------------------------------------------------------------------------- /docs/gateway/images/edit_thing_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/edit_thing_option.png -------------------------------------------------------------------------------- /docs/gateway/images/edit_user-two-factor_auth1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/edit_user-two-factor_auth1.png -------------------------------------------------------------------------------- /docs/gateway/images/edit_user-two-factor_auth2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/edit_user-two-factor_auth2.png -------------------------------------------------------------------------------- /docs/gateway/images/edit_user-two_factor_auth0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/edit_user-two_factor_auth0.png -------------------------------------------------------------------------------- /docs/gateway/images/edit_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/edit_user.png -------------------------------------------------------------------------------- /docs/gateway/images/empty_things_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/empty_things_screen.png -------------------------------------------------------------------------------- /docs/gateway/images/etcher_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/etcher_screenshot.png -------------------------------------------------------------------------------- /docs/gateway/images/event_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/event_log.png -------------------------------------------------------------------------------- /docs/gateway/images/event_log_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/event_log_option.png -------------------------------------------------------------------------------- /docs/gateway/images/experiments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/experiments.png -------------------------------------------------------------------------------- /docs/gateway/images/floorplan-edit-arranged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/floorplan-edit-arranged.png -------------------------------------------------------------------------------- /docs/gateway/images/floorplan-edit-unarranged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/floorplan-edit-unarranged.png -------------------------------------------------------------------------------- /docs/gateway/images/floorplan-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/floorplan-missing.png -------------------------------------------------------------------------------- /docs/gateway/images/floorplan-uploaded-unarranged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/floorplan-uploaded-unarranged.png -------------------------------------------------------------------------------- /docs/gateway/images/floorplan_view-lights_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/floorplan_view-lights_on.png -------------------------------------------------------------------------------- /docs/gateway/images/floorplan_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/floorplan_view.png -------------------------------------------------------------------------------- /docs/gateway/images/localisation_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/localisation_settings.png -------------------------------------------------------------------------------- /docs/gateway/images/log_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/log_in.png -------------------------------------------------------------------------------- /docs/gateway/images/log_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/log_out.png -------------------------------------------------------------------------------- /docs/gateway/images/logs_screen-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/logs_screen-empty.png -------------------------------------------------------------------------------- /docs/gateway/images/main_menu-floorplan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/main_menu-floorplan.png -------------------------------------------------------------------------------- /docs/gateway/images/main_menu-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/main_menu-logs.png -------------------------------------------------------------------------------- /docs/gateway/images/main_menu-rules-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/main_menu-rules-selected.png -------------------------------------------------------------------------------- /docs/gateway/images/main_menu-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/main_menu-settings.png -------------------------------------------------------------------------------- /docs/gateway/images/network_settings-ethernet-automatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/network_settings-ethernet-automatic.png -------------------------------------------------------------------------------- /docs/gateway/images/network_settings-ethernet-manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/network_settings-ethernet-manual.png -------------------------------------------------------------------------------- /docs/gateway/images/network_settings-wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/network_settings-wifi.png -------------------------------------------------------------------------------- /docs/gateway/images/network_settings-wifi_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/network_settings-wifi_password.png -------------------------------------------------------------------------------- /docs/gateway/images/network_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/network_settings.png -------------------------------------------------------------------------------- /docs/gateway/images/new_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/new_log.png -------------------------------------------------------------------------------- /docs/gateway/images/new_rule-and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/new_rule-and.png -------------------------------------------------------------------------------- /docs/gateway/images/new_rule-choose-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/new_rule-choose-input.png -------------------------------------------------------------------------------- /docs/gateway/images/new_rule-choose_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/new_rule-choose_output.png -------------------------------------------------------------------------------- /docs/gateway/images/new_rule-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/new_rule-complete.png -------------------------------------------------------------------------------- /docs/gateway/images/new_rule-dragging-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/new_rule-dragging-input.png -------------------------------------------------------------------------------- /docs/gateway/images/new_rule-dragging_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/new_rule-dragging_output.png -------------------------------------------------------------------------------- /docs/gateway/images/new_rule-or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/new_rule-or.png -------------------------------------------------------------------------------- /docs/gateway/images/new_rule-while.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/new_rule-while.png -------------------------------------------------------------------------------- /docs/gateway/images/new_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/new_rule.png -------------------------------------------------------------------------------- /docs/gateway/images/remove_log-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/remove_log-confirm.png -------------------------------------------------------------------------------- /docs/gateway/images/remove_log_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/remove_log_option.png -------------------------------------------------------------------------------- /docs/gateway/images/remove_rule-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/remove_rule-confirm.png -------------------------------------------------------------------------------- /docs/gateway/images/remove_thing_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/remove_thing_option.png -------------------------------------------------------------------------------- /docs/gateway/images/rules_screen-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/rules_screen-empty.png -------------------------------------------------------------------------------- /docs/gateway/images/rules_screen-invalid_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/rules_screen-invalid_rule.png -------------------------------------------------------------------------------- /docs/gateway/images/rules_screen-multiple_rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/rules_screen-multiple_rules.png -------------------------------------------------------------------------------- /docs/gateway/images/rules_screen-single_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/rules_screen-single_rule.png -------------------------------------------------------------------------------- /docs/gateway/images/settings_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/settings_view.png -------------------------------------------------------------------------------- /docs/gateway/images/thing_detail-colored_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/thing_detail-colored_light.png -------------------------------------------------------------------------------- /docs/gateway/images/thing_detail-dimmable_color_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/thing_detail-dimmable_color_light.png -------------------------------------------------------------------------------- /docs/gateway/images/thing_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/thing_detail.png -------------------------------------------------------------------------------- /docs/gateway/images/things_screen-single_thing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/things_screen-single_thing.png -------------------------------------------------------------------------------- /docs/gateway/images/things_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/things_screen.png -------------------------------------------------------------------------------- /docs/gateway/images/updates_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/updates_screen.png -------------------------------------------------------------------------------- /docs/gateway/images/users_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/users_screen.png -------------------------------------------------------------------------------- /docs/gateway/images/view_log-boolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/view_log-boolean.png -------------------------------------------------------------------------------- /docs/gateway/images/view_log-populated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/view_log-populated.png -------------------------------------------------------------------------------- /docs/gateway/images/view_logs-multiple_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/view_logs-multiple_logs.png -------------------------------------------------------------------------------- /docs/gateway/images/view_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/view_logs.png -------------------------------------------------------------------------------- /docs/gateway/images/view_users-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/view_users-multiple.png -------------------------------------------------------------------------------- /docs/gateway/images/wifi_ssid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/images/wifi_ssid.png -------------------------------------------------------------------------------- /docs/gateway/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/installation.md -------------------------------------------------------------------------------- /docs/gateway/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/introduction.md -------------------------------------------------------------------------------- /docs/gateway/log-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/log-in.md -------------------------------------------------------------------------------- /docs/gateway/log-out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/log-out.md -------------------------------------------------------------------------------- /docs/gateway/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/logs.md -------------------------------------------------------------------------------- /docs/gateway/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/rules.md -------------------------------------------------------------------------------- /docs/gateway/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/settings.md -------------------------------------------------------------------------------- /docs/gateway/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/setup.md -------------------------------------------------------------------------------- /docs/gateway/supported-hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/supported-hardware.md -------------------------------------------------------------------------------- /docs/gateway/things.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/gateway/things.md -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/wot/architecture.md: -------------------------------------------------------------------------------- 1 | # WoT Architecture -------------------------------------------------------------------------------- /docs/wot/discovery.md: -------------------------------------------------------------------------------- 1 | # WoT Discovery -------------------------------------------------------------------------------- /docs/wot/images/web_of_things_illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/wot/images/web_of_things_illustration.png -------------------------------------------------------------------------------- /docs/wot/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/docs/wot/introduction.md -------------------------------------------------------------------------------- /docs/wot/profiles.md: -------------------------------------------------------------------------------- 1 | # WoT Profiles -------------------------------------------------------------------------------- /docs/wot/thing-description.md: -------------------------------------------------------------------------------- 1 | # WoT Thing Description -------------------------------------------------------------------------------- /docs/wot/web-thing-protocol.md: -------------------------------------------------------------------------------- 1 | # Web Thing Protocol -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/docs/HEAD/mkdocs.yml --------------------------------------------------------------------------------