diff --git a/content/pybytes/_index.md b/content/pybytes/_index.md index 09230130..10bc4d46 100644 --- a/content/pybytes/_index.md +++ b/content/pybytes/_index.md @@ -18,6 +18,8 @@ With Pybytes you have control over your device's data stream and more: In a nutshell, Pybytes is an environment designed to optimise your IoT applications when using Pycom boards. +{{}} + ## What does Pybytes offer you? * Data Visualisation: The Pybytes dashboard is customisable, allowing you to freely set up key performance indicators and time series data from all your sensors. @@ -26,9 +28,9 @@ In a nutshell, Pybytes is an environment designed to optimise your IoT applicati * Firmware updates over the air: Upgrade or downgrade firmware versions with our exclusive firmware update. * Track your assets position: Google Maps API means you can track your device's geolocation. -> Note: If the [Pybytes website](https://pybytes.pycom.io/) seems to be down for you, do not worry! +> Note: If the [Pybytes website](https://pybytes.pycom.io/) seems to be down for you, do not worry! > * In Chrome, open developer settings using F12, click on the `Application` tab and `Service workers` next to the gear icon. Then, open the menu `service workers from other origins` and click `unregister`. That should solve the problem! - + ## Let's get started! @@ -37,3 +39,11 @@ In a nutshell, Pybytes is an environment designed to optimise your IoT applicati * [Visualise data from your device](/pybytes/dashboard/) * [LoRa Servers](/pybytes/lora/) * [Integrations with external services](/pybytes/integrations/) + +## Pybytes unboxing + +{{}} + +## Pybytes device management platform + +{{}} diff --git a/content/pybytes/mlintegration/_index.md b/content/pybytes/mlintegration/_index.md index becbf893..305be9b7 100644 --- a/content/pybytes/mlintegration/_index.md +++ b/content/pybytes/mlintegration/_index.md @@ -16,3 +16,23 @@ The Machine Learning integration is here to help you to create smart machine lea * [Machine Learning Model Creation](/pybytes/mlintegration/modelcreation) * [Machine Learning Features](/pybytes/mlintegration/features) + +## Model creation + +{{}} + + ## Data acquisition + +{{}} + + ## Processing data + +{{}} + + ## Training neural network + +{{}} + + ## Testing and deployment on board + +{{}} diff --git a/content/pybytes/networks/_index.md b/content/pybytes/networks/_index.md index 70b0de3f..b61be399 100644 --- a/content/pybytes/networks/_index.md +++ b/content/pybytes/networks/_index.md @@ -8,3 +8,5 @@ Pybytes supports four network types, which you can configure for each device or [**Sigfox**](/pybytes/networks/sigfox) [**LoRa**](/pybytes/networks/lora) + +{{}} diff --git a/content/pybytes/pymakr-online/_index.md b/content/pybytes/pymakr-online/_index.md index 9a968c48..cac2d2ac 100644 --- a/content/pybytes/pymakr-online/_index.md +++ b/content/pybytes/pymakr-online/_index.md @@ -4,7 +4,7 @@ aliases: - pymakr-online/introduction --- -On this page, we discuss the functionality of Pymakr Online. +On this page, we discuss the functionality of Pymakr Online. ## What is Pymakr Online? @@ -17,14 +17,20 @@ Pymakr Online is an online IDE for your MicroPython projects. We brought our Pym * Import from multiple sources (blank/device/project/Github repository), export to a zip file/device/project * Device activity indicator: track what's going between Pymakr Online and your device. +{{}} + +## Pymakr Git Demo + +{{}} + ## Let's get started! -There are two ways in which you can use Pymakr online. +There are two ways in which you can use Pymakr online. 1. Go to [your device](https://pybytes.pycom.io/devices) and select the `Pymakr Online` tab. This method allows you to make quick changes to the Python code on your device and upload it. This is the method we use below. ![](/gitbook/assets/pybytes/pymakr-online/opening-pymakr-device.png) -2. Start a new project on the [Pymakr](https://pybytes.pycom.io/pymakr) tab in Pybytes. There are several different types you can choose from, including a link to your Github repository! Later, we can link the project to a release. +2. Start a new project on the [Pymakr](https://pybytes.pycom.io/pymakr) tab in Pybytes. There are several different types you can choose from, including a link to your Github repository! Later, we can link the project to a release. ![](/gitbook/assets/pybytes/pymakr-online/opening-pymakr-project.png) @@ -36,10 +42,10 @@ There are two ways in which you can use Pymakr online. * On the left we see the files. Depending on where you started, the online environment will first load with the files you last used. If the device is online, it will automatically try to `Refresh Hierarcy` and synchronise the content. You can click the `Refresh Hierarcy` icon next to your device name to manually update the online filestructure. The online editor will automatically try to connect. - * In the top right, the connection status is displayed. Every so often, you will see a ping being sent out to the device to check if it is still connected. If you started pymakr from a project, you will also see the `Save/Export` button here as well. - * And finally, on the bottom, the REPL is displayed, this works exactly the same as the REPL you are used to in VSCode or Atom. Everything you type in there will be duplicated to the REPL over USB. + * In the top right, the connection status is displayed. Every so often, you will see a ping being sent out to the device to check if it is still connected. If you started pymakr from a project, you will also see the `Save/Export` button here as well. + * And finally, on the bottom, the REPL is displayed, this works exactly the same as the REPL you are used to in VSCode or Atom. Everything you type in there will be duplicated to the REPL over USB. -2. Open the `main.py` file, or, when not available, create one by right clicking on the device name to `Create File`. Here, we can write our own python code in the main editor. You can use the example we added below to try it out. +2. Open the `main.py` file, or, when not available, create one by right clicking on the device name to `Create File`. Here, we can write our own python code in the main editor. You can use the example we added below to try it out. ![](/gitbook/assets/pybytes/pymakr-online/open-file.png) @@ -61,15 +67,15 @@ There are two ways in which you can use Pymakr online. >Note that if you make a syntax error, the device will come back online but not throw any error in the REPL. -## Creating a Project +## Creating a Project -1. Now that you know how to use the Pymakr Online environment, we can create a project (if you have not already). If you just followed the example above, go to the [Pymakr](https://pybytes.pycom.io/pymakr#) tab and click on `Import from Existing Device`. +1. Now that you know how to use the Pymakr Online environment, we can create a project (if you have not already). If you just followed the example above, go to the [Pymakr](https://pybytes.pycom.io/pymakr#) tab and click on `Import from Existing Device`. ![](/gitbook/assets/pybytes/pymakr-online/starting-project.png) -2. Select your device and either `Retrieve from Cloud` or `Request from device`, depending on where the latest version of your code is. This will load the hierarchy and bring up the Pymakr Online interface. +2. Select your device and either `Retrieve from Cloud` or `Request from device`, depending on where the latest version of your code is. This will load the hierarchy and bring up the Pymakr Online interface. -3. Make your changes and then click the `Save/Export` button, this offers three options. This time, we use `Include in Release`. It will ask us to create a new project, or add to an already existing project. +3. Make your changes and then click the `Save/Export` button, this offers three options. This time, we use `Include in Release`. It will ask us to create a new project, or add to an already existing project. ![](/gitbook/assets/pybytes/pymakr-online/new-project.png) @@ -78,11 +84,10 @@ There are two ways in which you can use Pymakr online. ![](/gitbook/assets/pybytes/pymakr-online/new-project1.png) -5. Here, it asks for the networks we want to use. For now, lets select WiFi. +5. Here, it asks for the networks we want to use. For now, lets select WiFi. ![](/gitbook/assets/pybytes/pymakr-online/new-project1.png) 6. In the next screen, it asks for the WiFi network you want to use, select the one that is most convenient for you. 7. Now that we have successfully create a project. Using projects, you can add unlimited devices and keep them all up-to-date Over The Air (OTA) with new Pybytes configuration files, Python code or update the firmware. - diff --git a/content/pybytes/pymeshIntegration/_index.md b/content/pybytes/pymeshIntegration/_index.md index 9d3a3455..4a519a7f 100644 --- a/content/pybytes/pymeshIntegration/_index.md +++ b/content/pybytes/pymeshIntegration/_index.md @@ -9,6 +9,8 @@ This documentation is a quick introduction to the new Pymesh integration feature The Pymesh integration is here to help Pymesh firmware deployment and to monitor Pymesh node's health. +{{< youtube 4dgxvkZbF_4>}} + ## Let's get started! * [Pymesh Provisioning](/pybytes/pymeshintegration/provisioning) diff --git a/content/pybytes/releases/_index.md b/content/pybytes/releases/_index.md index 913e8fdf..fc73cdd3 100644 --- a/content/pybytes/releases/_index.md +++ b/content/pybytes/releases/_index.md @@ -6,6 +6,8 @@ aliases: ### What is the release? Each **Pybytes** project contains list of devices. You can update the devices **code**, **network configurations** and/or **firmware version** using a **release** version. +{{}} + ### What is included in the release? Each **Release** can contains one or more of the following: diff --git a/content/pymesh/_index.md b/content/pymesh/_index.md index 72950eae..4993656c 100644 --- a/content/pymesh/_index.md +++ b/content/pymesh/_index.md @@ -5,6 +5,14 @@ aliases: --- ![](/gitbook/assets/pymesh/pymesh_roles.png) +## Pymesh on Pybytes + +{{< youtube 4dgxvkZbF_4>}} + +## Pymesh presentation at TTN Conference + +{{< youtube Ab_WFE93BQI>}} + ## What is Pymesh? Pymesh is the LoRa full-mesh network technology.