Fix dead links (#367)

This commit is contained in:
gijsio
2021-01-22 18:14:33 +01:00
committed by GitHub
parent d5160720ef
commit 8890279ed2
4 changed files with 5 additions and 5 deletions

View File

@@ -17,4 +17,4 @@ Over the past few years, Pycom has been in receipt of many a request for access
* [SIM card registration](/cellularservices/vodafone/simregistration)
* [FAQ](https://pycom.io/webshop/services/cellular-services/faq-for-vodafone-pycoms-nb-iot-services/)
* [FAQ](https://pycom.io/webshop-2/services/cellular-services/faq-for-vodafone-pycoms-nb-iot-services/)

View File

@@ -20,7 +20,7 @@ aliases:
The datasheet of the LoPy4 is available as a [PDF File](/gitbook/assets/specsheets/Pycom_002_Specsheets_LoPy4_v2.pdf)
The Lopy 4 is certified for [CE RED](/gitbook/assets/C03-B0-RED-final.pdf) and [FCC DSS](/gitbook/assets/Pycom-2AJMTLOPY4R-FCC-Grant-DSS.pdf)
The Lopy 4 is certified for [CE RED](/gitbook/assets/c03-b0-red-final.pdf) and [FCC DSS](/gitbook/assets/Pycom-2AJMTLOPY4R-FCC-Grant-DSS.pdf)
[RCM](/gitbook/assets/RCM-LOPY4.zip)
[ROHS certification](/gitbook/assets/RoHs_declarations/RoHS-for-LoPy-4(8286-00027P)-20190523.pdf)

View File

@@ -36,11 +36,11 @@ Cyan - SINGLE LEADER (no other Router in the same Pymesh)
## Example of usage
A simple example of usage is in the [main.py](https://github.com/pycom/pycom-libraries/blob/master/lib/pymesh/main.py).
A simple example of usage can be found [here](/pymesh/simple-example/).
## Specifications
It can be easily customised, by modifying any file from [/lib folder](https://github.com/pycom/pycom-libraries/tree/master/pymesh/lib/) and flashing it to the board. The uploaded file will automatically be executed instead of the _frozen_ one, which is already embedded into the binary firmware.
It can be easily customised, by modifying any file from [/lib folder](https://github.com/pycom/pycom-libraries/tree/master/pymesh/) and flashing it to the board. The uploaded file will automatically be executed instead of the _frozen_ one, which is already embedded into the binary firmware.
### Structure

View File

@@ -6,7 +6,7 @@ aliases:
- chapter/tutorials/all/pir
---
This code reads PIR sensor triggers from this simple [PIR sensor](https://www.kiwi-electronics.nl/PIR-Motion-Sensor) and sends an HTTP request for every trigger, in this case to a [Domoticz](https://domoticz.com/) installation. When motion is constantly detected, this PIR sensor keeps the pin high, in which case this code will keep sending HTTP requests every 10 seconds (configurable with the hold\_time variable).
This code reads PIR sensor triggers from this simple Passive Infrared (PIR) motion sensor and sends an HTTP request for every trigger, in this case to a [Domoticz](https://domoticz.com/) installation. When motion is constantly detected, this PIR sensor keeps the pin high, in which case this code will keep sending HTTP requests every 10 seconds (configurable with the hold_time variable).
## Main (`main.py`)