From 988aaa2bd3d8400db318d423c6a205d195e0d5a4 Mon Sep 17 00:00:00 2001 From: Tim Huyeng Date: Mon, 13 Feb 2023 14:36:08 +0100 Subject: [PATCH 1/5] fix heltec doc links --- src/hal/heltec.h | 2 +- src/hal/heltecv2.h | 2 +- src/hal/heltecv21.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hal/heltec.h b/src/hal/heltec.h index 3546089e..e9b0198e 100644 --- a/src/hal/heltec.h +++ b/src/hal/heltec.h @@ -8,7 +8,7 @@ #include // Hardware related definitions for Heltec V1 LoRa-32 Board -// see https://heltec-automation-docs.readthedocs.io/en/latest/esp32/wifi_lora_32/hardware_update_log.html#v1 +// see https://docs.heltec.org/en/node/esp32/dev-board/hardware_update_log.html#v1 #define HAS_LORA 1 // comment out if device shall not send data via LoRa #define CFG_sx1276_radio 1 diff --git a/src/hal/heltecv2.h b/src/hal/heltecv2.h index b047bdd8..937ac6a5 100644 --- a/src/hal/heltecv2.h +++ b/src/hal/heltecv2.h @@ -8,7 +8,7 @@ #include // Hardware related definitions for Heltec V2 LoRa-32 Board -// see https://heltec-automation-docs.readthedocs.io/en/latest/esp32/wifi_lora_32/hardware_update_log.html#v2 +// see https://docs.heltec.org/en/node/esp32/dev-board/hardware_update_log.html#v2 #define HAS_LORA 1 // comment out if device shall not send data via LoRa #define CFG_sx1276_radio 1 diff --git a/src/hal/heltecv21.h b/src/hal/heltecv21.h index 9372325d..011e34c6 100644 --- a/src/hal/heltecv21.h +++ b/src/hal/heltecv21.h @@ -8,7 +8,7 @@ #include // Hardware related definitions for Heltec V2.1 LoRa-32 Board -// see https://heltec-automation-docs.readthedocs.io/en/latest/esp32/wifi_lora_32/hardware_update_log.html#v2-1 +// see https://docs.heltec.org/en/node/esp32/dev-board/hardware_update_log.html#v2-1 #define HAS_LORA 1 // comment out if device shall not send data via LoRa #define CFG_sx1276_radio 1 From 651869d55ee524a97f806efd2a7921802413750f Mon Sep 17 00:00:00 2001 From: cyberman54 Date: Fri, 24 Feb 2023 18:00:12 +0100 Subject: [PATCH 2/5] lmic_config.h: removed unsupported bands --- src/lmic_config.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lmic_config.h b/src/lmic_config.h index 51c7b63f..c544c81b 100644 --- a/src/lmic_config.h +++ b/src/lmic_config.h @@ -7,13 +7,10 @@ // --> please check with you local regulations for ISM band frequency use! #define CFG_eu868 1 // Europe (high band) -//#define CFG_eu433 1 // Europe (low band) //#define CFG_us915 1 // USA, Canada and South America //#define CFG_in866 1 // India //#define CFG_au915 1 // Australia //#define CFG_as923 1 // Asia -//#define CFG_cn783 1 // China (high band) -//#define CFG_cn490 1 // China (low band) //#define CFG_kr920 1 // Korea // LMIC LORAWAN STACK SETTINGS From 05445594eb873a15e5d3423da93f44b69a4f72dd Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Thu, 2 Mar 2023 21:39:20 +0100 Subject: [PATCH 3/5] Update payloadformat.md CayenneLPP link updated --- docs/payloadformat.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/payloadformat.md b/docs/payloadformat.md index 5e4aae16..afe2143e 100644 --- a/docs/payloadformat.md +++ b/docs/payloadformat.md @@ -7,7 +7,7 @@ You can select different payload formats in [`paxcounter.conf`](https://github.c - ***Packed*** uses little endian format and generates json fields -- [***CayenneLPP***](https://mydevices.com/cayenne/docs/lora/#lora-cayenne-low-power-payload-reference-implementation) generates MyDevices Cayenne readable fields +- [***CayenneLPP***](https://developers.mydevices.com/cayenne/docs/lora/#lora-cayenne-low-power-payload-data-types) generates MyDevices Cayenne readable fields ```c linenums="20" title="src/paxcounter_orig.conf" From 6ae1cf4676a10e2489e7d3013cf962e2f1ec7595 Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Thu, 2 Mar 2023 21:40:43 +0100 Subject: [PATCH 4/5] Update payloadformat.md modified Cayenne LPP link --- docs/payloadformat.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/payloadformat.md b/docs/payloadformat.md index afe2143e..18dbd8fb 100644 --- a/docs/payloadformat.md +++ b/docs/payloadformat.md @@ -7,7 +7,7 @@ You can select different payload formats in [`paxcounter.conf`](https://github.c - ***Packed*** uses little endian format and generates json fields -- [***CayenneLPP***](https://developers.mydevices.com/cayenne/docs/lora/#lora-cayenne-low-power-payload-data-types) generates MyDevices Cayenne readable fields +- [***CayenneLPP***](https://developers.mydevices.com/cayenne/docs/lora/#lora-cayenne-low-power-payload) generates MyDevices Cayenne readable fields ```c linenums="20" title="src/paxcounter_orig.conf" From 8c4310bf075125df5e2f2d52dea04a2d99f6a34e Mon Sep 17 00:00:00 2001 From: cyberman54 Date: Sun, 5 Mar 2023 18:40:01 +0100 Subject: [PATCH 5/5] fix typo --- docs/configuration/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/index.md b/docs/configuration/index.md index e1a22249..6060669d 100644 --- a/docs/configuration/index.md +++ b/docs/configuration/index.md @@ -86,7 +86,7 @@ Supported external time sources are GPS, LORAWAN network time and LORAWAN applic !!! tip - If your LORAWAN network does not support network time, you can run a Node-Red timeserver application using the enclosed [**Timeserver code**](https://github.com/cyberman54/ESP32-Paxcounter/blob/master/src/Node-RED/Timeserver.json). Configure the MQTT nodes in Node-Red for the LORAWAN application used by your paxocunter device. Time can also be set without precision liability, by simple remote command, see section remote control. + If your LORAWAN network does not support network time, you can run a Node-Red timeserver application using the enclosed [**Timeserver code**](https://github.com/cyberman54/ESP32-Paxcounter/blob/master/src/Node-RED/Timeserver.json). Configure the MQTT nodes in Node-Red for the LORAWAN application used by your paxcounter device. Time can also be set without precision liability, by simple remote command, see section remote control. ## Wall clock controller