From ba70d364b111fd0ea622e0be38222882a0b0681c Mon Sep 17 00:00:00 2001 From: Florian Date: Mon, 26 Dec 2022 13:56:24 -0600 Subject: [PATCH] [CI and DOC] Add LilyGO RTL 433 (#1373) board to documentation and web upload script --- docs/upload/web-install.md | 1 + scripts/gen_wu.py | 2 +- scripts/gen_wu_dev.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/upload/web-install.md b/docs/upload/web-install.md index 87631d5ada..428f7bfb1b 100644 --- a/docs/upload/web-install.md +++ b/docs/upload/web-install.md @@ -50,6 +50,7 @@ The table below describes the libraries and the modules of each board configurat |heltec-wifi-lora32-868|ESP32 HELTEC LORA V2|LORA communication 868Mhz using [arduino-LoRA](https://github.com/sandeepmistry/arduino-LoRa) |-|-|-|X| |heltec-wifi-lora32-915|ESP32 HELTEC LORA V2|LORA communication 915Mhz using [arduino-LoRA](https://github.com/sandeepmistry/arduino-LoRa)|-|-|-|X| |heltec-rtl_433|ESP32 HELTEC LORA32 v2|Gateway using [RTL_433_ESP](https://github.com/NorthernMan54/rtl_433_ESP) and [RadioLib](https://github.com/jgromes/RadioLib)|X|-|-|-| +|lilygo-rtl_433|ESP32 LILYGO LoRa32 V2.1|Gateway using [RTL_433_ESP](https://github.com/NorthernMan54/rtl_433_ESP) and [RadioLib](https://github.com/jgromes/RadioLib)|X|-|-|-| |tinypico-ble|ESP32 TinyPICO|BLE Gateway|-|-|X|-| |ttgo-lora32-v1-868|ESP32 TTGO LORA V1|LORA communication 868Mhz using [arduino-LoRA](https://github.com/sandeepmistry/arduino-LoRa)|-|-|-|X| |ttgo-lora32-v1-915|ESP32 TTGO LORA V1|LORA communication 915Mhz using [arduino-LoRA](https://github.com/sandeepmistry/arduino-LoRa)|-|-|-|X| diff --git a/scripts/gen_wu.py b/scripts/gen_wu.py index 118b534344..9f27f0c611 100644 --- a/scripts/gen_wu.py +++ b/scripts/gen_wu.py @@ -119,7 +119,7 @@ for item in range(len(assets)): name = assets[item]['name'] - if 'firmware.bin' in name and ('esp32' in name or 'ttgo' in name or 'heltec' in name or 'thingpulse' in name): + if 'firmware.bin' in name and ('esp32' in name or 'ttgo' in name or 'heltec' in name or 'thingpulse' in name or 'lilygo' in name): fw = name.split('-firmware')[0] man_file = fw + '.manifest.json' fw_url = assets[item]['browser_download_url'] diff --git a/scripts/gen_wu_dev.py b/scripts/gen_wu_dev.py index 7125aa6ebe..69368d244d 100644 --- a/scripts/gen_wu_dev.py +++ b/scripts/gen_wu_dev.py @@ -107,7 +107,7 @@ output_file.write(boot_bin.content) for name in os.listdir(bin_path): - if 'firmware.bin' in name and ('esp32' in name or 'ttgo' in name or 'heltec' in name or 'thingpulse' in name): + if 'firmware.bin' in name and ('esp32' in name or 'ttgo' in name or 'heltec' in name or 'thingpulse' in name or 'lilygo' in name): fw = name.split('-firmware')[0] man_file = fw + '.manifest.json' print('Bin name:' + name)