1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-13 05:19:50 +04:00

[IR] universal remote additions (#3922)

* multiple new additions
  Hisense K321UW, Soniq E55V13A, Soniq E32W13B and 2 others
* updated with proper names
  Viano STV65UHD4K
  Hisense K321UW
  Hisense EN2B27
  Soniq E55V13A
  Soniq E32W13B
* format tv.ir
* Update tv.ir
* new universal ac additions
  Maytag M6X06F2A
  Panasonic CS-E9HKR
* new universal audio additions
  Sony MHC_GSX75
  Elac EA101EQ-G
  Philips FW750C
  Pioneer VSX-D1-S
* remove final # audio.ir
* Scripts: update deprecated methods use in python scripts
* Scripts: add comment reading support to fff, preserve comments in infrared cleanup script
* Scripts: improved infrared files cleanup script
* Scripts: add missing new line at the end of file in infrared file cleanup script
* Infrared: cleanup universal remotes

Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
jay candel
2024-10-03 00:28:24 +08:00
committed by GitHub
parent 09a7cc2b46
commit 3c93761d1d
8 changed files with 345 additions and 190 deletions

View File

@@ -27,37 +27,51 @@ class Main(App):
return 1
data = []
unique = {}
unique_combo = {}
unique_payload = {}
while True:
try:
d = {}
d["comments"] = []
while (comment := f.readComment()) is not None:
d["comments"].append(comment)
d["name"] = f.readKey("name")
d["type"] = f.readKey("type")
key = None
key_combo = f'{d["name"]}'
key_payload = None
if d["type"] == "parsed":
d["protocol"] = f.readKey("protocol")
d["address"] = f.readKey("address")
d["command"] = f.readKey("command")
key = f'{d["protocol"]}{d["address"]}{d["command"]}'
key_payload = f'{d["protocol"]}{d["address"]}{d["command"]}'
key_combo += key_payload
elif d["type"] == "raw":
d["frequency"] = f.readKey("frequency")
d["duty_cycle"] = f.readKey("duty_cycle")
d["data"] = f.readKey("data")
key = f'{d["frequency"]}{d["duty_cycle"]}{d["data"]}'
key_payload = f'{d["frequency"]}{d["duty_cycle"]}{d["data"]}'
key_combo += key_payload
else:
raise Exception(f'Unknown type: {d["type"]}')
if not key in unique:
unique[key] = d
if not key_combo in unique_combo:
unique_combo[key_combo] = d
data.append(d)
# Check payload only
if not key_payload in unique_payload:
unique_payload[key_payload] = d
else:
self.logger.warning(f"Duplicate payload, check manually: {d}")
else:
self.logger.warn(f"Duplicate key: {key}")
self.logger.info(f"Duplicate data removed: {d}")
except EOFError:
break
# Form new file
f = FlipperFormatFile()
f.setHeader(filetype, version)
for i in data:
f.writeComment(None)
for comment in i["comments"]:
f.writeComment(comment)
f.writeKey("name", i["name"])
f.writeKey("type", i["type"])
if i["type"] == "parsed":