Skip to content

Commit

Permalink
[CI and DOC] Add LilyGO RTL 433 (#1373)
Browse files Browse the repository at this point in the history
board to documentation and web upload script
  • Loading branch information
1technophile authored Dec 26, 2022
1 parent 2e0d170 commit ba70d36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/upload/web-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen_wu.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen_wu_dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ba70d36

Please sign in to comment.