From b4940fd8fa2cb177579f84d1902ea87995d0f16c Mon Sep 17 00:00:00 2001 From: gijsio <67470426+gijsio@users.noreply.github.com> Date: Mon, 20 Jul 2020 13:59:31 +0200 Subject: [PATCH] some beautification --- content/_index.md | 3 --- content/firmwareapi/_index.md | 7 +++---- content/gettingstarted/_index.md | 10 +++++----- content/tutorials/advanced/_index.md | 6 ++++++ content/tutorials/hardware/adc.md | 3 --- content/tutorials/hardware/i2c.md | 3 --- content/tutorials/hardware/owd.md | 4 +--- content/tutorials/networks/lte/_index.md | 7 +++++++ themes/doc-theme/static/css/vuetify.css | 2 +- 9 files changed, 23 insertions(+), 22 deletions(-) create mode 100644 content/tutorials/advanced/_index.md diff --git a/content/_index.md b/content/_index.md index 033a604..6e78e0a 100644 --- a/content/_index.md +++ b/content/_index.md @@ -6,11 +6,8 @@ aliases: Pycom ecosystem makes IoT development easy * Choose [IoT hardware](products) which fit your project requirements. - * Install Pymakr plugin in [Atom](https://atom.io/packages/pymakr) or [VS Code](https://marketplace.visualstudio.com/items?itemName=pycom.Pymakr) and start with your IoT project in seconds. - * Write [MicroPython](https://micropython.org/) code and up to three times faster compared to C/C++. - * Send data to [Pybytes IoT platform](https://pybytes.pycom.io/?utm_source=docs&utm_medium=web&utm_campaign=getting-started-top) or use your device standalone with the range of supported networks. * Start using our products [here!](/gettingstarted/) diff --git a/content/firmwareapi/_index.md b/content/firmwareapi/_index.md index 287d98a..7ac9f2c 100644 --- a/content/firmwareapi/_index.md +++ b/content/firmwareapi/_index.md @@ -8,10 +8,9 @@ aliases: This chapter describes modules (function and class libraries) that are built into MicroPython. There are a number of categories for the available modules: -* Modules which implement a subset of standard Python functionality and are not intended to be extended by the user. -* Modules which implement a subset of Python functionality, with a provision for extension by the user (via Python code). -* Modules which implement MicroPython extensions to the Python standard libraries. -* Modules specific to a particular port and thus not portable. +* [implemented by Pycom](/firmwareapi/pycom/) +* [Implemented by Micropython](/firmwareapi/micropython/) +* External or custom modules and libraries ## Note about the availability of modules and their contents diff --git a/content/gettingstarted/_index.md b/content/gettingstarted/_index.md index 5a3c900..3fc126f 100644 --- a/content/gettingstarted/_index.md +++ b/content/gettingstarted/_index.md @@ -62,8 +62,8 @@ If you are using Atom, it is important to check at this point that Atom has succ ![](/gitbook/assets/atom_project.png) -If this is not the case you can press `alt-ctrl-r` on Windows/Linux or `ctrl-alt-cmd-l` on macOS, in order to reload Atom and fix the issue. -{{% /hint %}} +>If this is not the case you can press `alt-ctrl-r` on Windows/Linux or `ctrl-alt-cmd-l` on macOS, in order to reload Atom and fix the issue. + 4. Now that you have created a poject, we need to add some files. A standard MicroPython project will have a `lib` folder for additional libraries, and two python files: `main.py` and `boot.py`. @@ -140,11 +140,11 @@ Now that we got the basic example running, you can continue with the links below * [Get started using the FTP and Telnet Server](/gettingstarted/programming/ftp/) -* [Connect using Pybytes](/pybytes/gettingstarted/) +* [Connect using Pybytes](/pybytes/getstarted/) -* [Registering with a network](/gettingstarted/network/) +* [Registering with a network](/gettingstarted/registration/) -* [Updating the firmware of your device](/firmwareupdate/) +* [Updating the firmware of your device](/updatefirmware/)