mirror of
https://github.com/sascha-hemi/pycom-documentation.git
synced 2026-03-21 04:06:11 +01:00
docs: pybytes api documentation
This commit is contained in:
31
config.toml
31
config.toml
@@ -1159,6 +1159,13 @@ theme = "doc-theme"
|
||||
parent = "pybytes"
|
||||
weight = 10
|
||||
|
||||
[[menu.main]]
|
||||
name = "Pybytes library API"
|
||||
url = "/pybytes/api/"
|
||||
identifier = "pybytes@api"
|
||||
parent = "pybytes"
|
||||
weight = 15
|
||||
|
||||
[[menu.main]]
|
||||
name = "Add a device to Pybytes"
|
||||
url = "/pybytes/connect/"
|
||||
@@ -1178,7 +1185,7 @@ theme = "doc-theme"
|
||||
url = "/pybytes/sigfox/"
|
||||
identifier = "pybytes@sigfox"
|
||||
parent = "pybytes"
|
||||
weight = 30
|
||||
weight = 25
|
||||
|
||||
[[menu.main]]
|
||||
name = "DevKit contract"
|
||||
@@ -1199,21 +1206,14 @@ theme = "doc-theme"
|
||||
url = "/pybytes/releases/"
|
||||
identifier = "pybytes@releases"
|
||||
parent = "pybytes"
|
||||
weight = 20
|
||||
|
||||
[[menu.main]]
|
||||
name = "Pybytes iOS"
|
||||
url = "/pybytes/smart/"
|
||||
identifier = "pybytes@smart"
|
||||
parent = "pybytes"
|
||||
weight = 20
|
||||
weight = 30
|
||||
|
||||
[[menu.main]]
|
||||
name = "Create new release"
|
||||
url = "/pybytes/releases/new/"
|
||||
identifier = "pybytes@releases@new"
|
||||
parent = "pybytes@releases"
|
||||
weight = 20
|
||||
weight = 10
|
||||
|
||||
[[menu.main]]
|
||||
name = "Deploy release"
|
||||
@@ -1222,19 +1222,26 @@ theme = "doc-theme"
|
||||
parent = "pybytes@releases"
|
||||
weight = 20
|
||||
|
||||
[[menu.main]]
|
||||
name = "Pybytes iOS"
|
||||
url = "/pybytes/smart/"
|
||||
identifier = "pybytes@smart"
|
||||
parent = "pybytes"
|
||||
weight = 35
|
||||
|
||||
[[menu.main]]
|
||||
name = "Visualise data"
|
||||
url = "/pybytes/dashboard/"
|
||||
identifier = "pybytes@dashboard"
|
||||
parent = "pybytes"
|
||||
weight = 30
|
||||
weight = 40
|
||||
|
||||
[[menu.main]]
|
||||
name = "Integrations"
|
||||
url = "/pybytes/integrations/"
|
||||
identifier = "pybytes@integrations"
|
||||
parent = "pybytes"
|
||||
weight = 40
|
||||
weight = 45
|
||||
|
||||
[[menu.main]]
|
||||
name = "Amazon IoT"
|
||||
|
||||
83
content/pybytes/api/_index.md
Normal file
83
content/pybytes/api/_index.md
Normal file
@@ -0,0 +1,83 @@
|
||||
---
|
||||
title: "Pybytes library API"
|
||||
aliases:
|
||||
- pybytes/api
|
||||
---
|
||||
|
||||
* [Connect Wifi](connect_wifi)
|
||||
|
||||
* [Connect LTE](connect_lte)
|
||||
|
||||
* [Connect LoRa ABP](connect_lora_abp)
|
||||
|
||||
* [Connect LoRa OTAA](connect_lora_otaa)
|
||||
|
||||
* [Connect Sigfox](connect_sigfox)
|
||||
|
||||
* [Disconnect](disconnect)
|
||||
|
||||
* [Send custom message](send_custom_message)
|
||||
|
||||
* [Set custom message callback](set_custom_message_callback)
|
||||
|
||||
* [Send ping message](send_ping_message)
|
||||
|
||||
* [Send info message](send_info_message)
|
||||
|
||||
* [Send scan info message](send_scan_info_message)
|
||||
|
||||
* [Send digital pin value](send_digital_pin_value)
|
||||
|
||||
* [Send analog pin value](send_analog_pin_value)
|
||||
|
||||
* [Send virtual pin value](send_virtual_pin_value)
|
||||
|
||||
* [Send signal](send_signal)
|
||||
|
||||
* [Register periodical digital pin publish](register_periodical_digital_pin_publish)
|
||||
|
||||
* [Register periodical analog pin publish](register_periodical_analog_pin_publish)
|
||||
|
||||
* [Add custom method](add_custom_method)
|
||||
|
||||
* [Enable terminal](enable_terminal)
|
||||
|
||||
* [Send battery level](send_battery_level)
|
||||
|
||||
* [Send custom location](send_custom_location)
|
||||
|
||||
* [Is connected](is_connected)
|
||||
|
||||
* [isconnected](isconnected)
|
||||
|
||||
* [Connect](connect)
|
||||
|
||||
* [Write config](write_config)
|
||||
|
||||
* [Print cfg msg](print_cfg_msg)
|
||||
|
||||
* [Print config](print_config)
|
||||
|
||||
* [Get config](get_config)
|
||||
|
||||
* [Set config](set_config)
|
||||
|
||||
* [Update config](update_config)
|
||||
|
||||
* [Read config](read_config)
|
||||
|
||||
* [Reconnect](reconnect)
|
||||
|
||||
* [Export config](export_config)
|
||||
|
||||
* [Enable ssl](enable_ssl)
|
||||
|
||||
* [Enable lte](enable_lte)
|
||||
|
||||
* [Deepsleep](deepsleep)
|
||||
|
||||
* [Dump ca](dump_ca)
|
||||
|
||||
* [Start](start)
|
||||
|
||||
* [Activate](activate)
|
||||
0
content/pybytes/api/activate.md
Normal file
0
content/pybytes/api/activate.md
Normal file
0
content/pybytes/api/add_custom_method.md
Normal file
0
content/pybytes/api/add_custom_method.md
Normal file
0
content/pybytes/api/connect.md
Normal file
0
content/pybytes/api/connect.md
Normal file
14
content/pybytes/api/connect_lora_abp.md
Normal file
14
content/pybytes/api/connect_lora_abp.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "Pybytes library API"
|
||||
aliases:
|
||||
- pybytes/api/connect_lora_abp
|
||||
---
|
||||
|
||||
**Connect LoRa ABP**
|
||||
----
|
||||
Initialize LoRa ABP connection
|
||||
|
||||
|
||||
**Method**
|
||||
----
|
||||
**pybytes.connect_lora_abp()**
|
||||
0
content/pybytes/api/connect_lora_otta.md
Normal file
0
content/pybytes/api/connect_lora_otta.md
Normal file
14
content/pybytes/api/connect_lte.md
Normal file
14
content/pybytes/api/connect_lte.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "Pybytes library API"
|
||||
aliases:
|
||||
- pybytes/api/connect_lte
|
||||
---
|
||||
|
||||
**Connect LTE**
|
||||
----
|
||||
Initialize watchdog for WiFi and LTE connection
|
||||
|
||||
|
||||
**Method**
|
||||
----
|
||||
**pybytes.connect_lte()**
|
||||
0
content/pybytes/api/connect_sigfox.md
Normal file
0
content/pybytes/api/connect_sigfox.md
Normal file
14
content/pybytes/api/connect_wifi.md
Normal file
14
content/pybytes/api/connect_wifi.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "Pybytes library API"
|
||||
aliases:
|
||||
- pybytes/api/connect_wifi
|
||||
---
|
||||
|
||||
**Connect Wifi**
|
||||
----
|
||||
Initialize watchdog for WiFi and LTE connection
|
||||
|
||||
|
||||
**Method**
|
||||
----
|
||||
**pybytes.connect_wifi()**
|
||||
0
content/pybytes/api/deepsleep.md
Normal file
0
content/pybytes/api/deepsleep.md
Normal file
0
content/pybytes/api/disconnect.md
Normal file
0
content/pybytes/api/disconnect.md
Normal file
0
content/pybytes/api/dump_ca.md
Normal file
0
content/pybytes/api/dump_ca.md
Normal file
0
content/pybytes/api/enable_lte.md
Normal file
0
content/pybytes/api/enable_lte.md
Normal file
0
content/pybytes/api/enable_ssl.md
Normal file
0
content/pybytes/api/enable_ssl.md
Normal file
0
content/pybytes/api/enable_terminal.md
Normal file
0
content/pybytes/api/enable_terminal.md
Normal file
0
content/pybytes/api/export_config.md
Normal file
0
content/pybytes/api/export_config.md
Normal file
0
content/pybytes/api/get_config.md
Normal file
0
content/pybytes/api/get_config.md
Normal file
0
content/pybytes/api/is_connected.md
Normal file
0
content/pybytes/api/is_connected.md
Normal file
0
content/pybytes/api/isconnected.md
Normal file
0
content/pybytes/api/isconnected.md
Normal file
0
content/pybytes/api/print_config.md
Normal file
0
content/pybytes/api/print_config.md
Normal file
0
content/pybytes/api/read_config.md
Normal file
0
content/pybytes/api/read_config.md
Normal file
0
content/pybytes/api/reconnect.md
Normal file
0
content/pybytes/api/reconnect.md
Normal file
0
content/pybytes/api/send_analog_pin_value.md
Normal file
0
content/pybytes/api/send_analog_pin_value.md
Normal file
0
content/pybytes/api/send_battery_level.md
Normal file
0
content/pybytes/api/send_battery_level.md
Normal file
0
content/pybytes/api/send_custom_location.md
Normal file
0
content/pybytes/api/send_custom_location.md
Normal file
0
content/pybytes/api/send_custom_message.md
Normal file
0
content/pybytes/api/send_custom_message.md
Normal file
0
content/pybytes/api/send_digital_pin_value.md
Normal file
0
content/pybytes/api/send_digital_pin_value.md
Normal file
0
content/pybytes/api/send_info_message.md
Normal file
0
content/pybytes/api/send_info_message.md
Normal file
0
content/pybytes/api/send_ping_message.md
Normal file
0
content/pybytes/api/send_ping_message.md
Normal file
0
content/pybytes/api/send_scan_info_message.md
Normal file
0
content/pybytes/api/send_scan_info_message.md
Normal file
0
content/pybytes/api/send_signal.md
Normal file
0
content/pybytes/api/send_signal.md
Normal file
0
content/pybytes/api/send_virtual_pin_value.md
Normal file
0
content/pybytes/api/send_virtual_pin_value.md
Normal file
0
content/pybytes/api/set_config.md
Normal file
0
content/pybytes/api/set_config.md
Normal file
0
content/pybytes/api/set_custom_message_callback.md
Normal file
0
content/pybytes/api/set_custom_message_callback.md
Normal file
0
content/pybytes/api/start.md
Normal file
0
content/pybytes/api/start.md
Normal file
0
content/pybytes/api/update_config.md
Normal file
0
content/pybytes/api/update_config.md
Normal file
0
content/pybytes/api/write_config.md
Normal file
0
content/pybytes/api/write_config.md
Normal file
0
content/pybytes/print_cfg_msg.md
Normal file
0
content/pybytes/print_cfg_msg.md
Normal file
Reference in New Issue
Block a user