mirror of
https://github.com/Lucaslhm/Flipper-IRDB.git
synced 2025-01-28 05:27:55 +00:00
Merge pull request #816 from logickworkshop/main
Pull changes from logickworkshop/Flipper-IRDB
This commit is contained in:
commit
cde8f448ae
@ -83,6 +83,44 @@
|
|||||||
"Mute": [
|
"Mute": [
|
||||||
"$group:mute"
|
"$group:mute"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"LED_Lighting/*": {
|
||||||
|
"Power_off": [
|
||||||
|
"$group:power-off"
|
||||||
|
],
|
||||||
|
"Power_on": [
|
||||||
|
"$group:power-on"
|
||||||
|
],
|
||||||
|
"Brightness_up": [
|
||||||
|
"/^(b|bright(ness|en)?|light|lum|dim(mer)?)[_\\s]*(up|\\+|high|more|max|full[_\\s]*up)$/",
|
||||||
|
"/^more[_\\s]*lights?$/",
|
||||||
|
"/^b[4r]$/",
|
||||||
|
"+"
|
||||||
|
],
|
||||||
|
"Brightness_dn": [
|
||||||
|
"/^(b|bright(ness|en)?|light|lum|dim(mer)?)[_\\s]*(down|\\-|low|min(us)?|less|full[_\\s]*down)$/",
|
||||||
|
"/^less[_\\s]*lights?$/",
|
||||||
|
"b1",
|
||||||
|
"-"
|
||||||
|
],
|
||||||
|
"Red": [
|
||||||
|
"/^r(ed)?[_\\s]*(0|1|only)?$/",
|
||||||
|
"/^light[_\\s]*r(ed)?$/"
|
||||||
|
],
|
||||||
|
"Green": [
|
||||||
|
"/^g(reen)?[_\\s]*(0|1|only)?$/",
|
||||||
|
"/^light[_\\s]*g(reen)?$/"
|
||||||
|
],
|
||||||
|
"Blue": [
|
||||||
|
"/^b(lue)?[_\\s]*(0|1|only)?$/",
|
||||||
|
"/^light[_\\s]*b(lue)?$/",
|
||||||
|
"/^b$/"
|
||||||
|
],
|
||||||
|
"White": [
|
||||||
|
"/^w(hite)?[_\\s]*(1|only)?$/",
|
||||||
|
"/^warm[_\\s]*w(hite)?$/",
|
||||||
|
"/^whitish$/"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
40
Humidifiers/Maxcan/Maxcan_mh_602brc.ir
Normal file
40
Humidifiers/Maxcan/Maxcan_mh_602brc.ir
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
Filetype: IR signals file
|
||||||
|
Version: 1
|
||||||
|
#
|
||||||
|
# MAXCAN MH-602BRC
|
||||||
|
#
|
||||||
|
name: On_off
|
||||||
|
type: parsed
|
||||||
|
protocol: NECext
|
||||||
|
address: 75 5D 00 00
|
||||||
|
command: 45 BA 00 00
|
||||||
|
#
|
||||||
|
name: Delay_start
|
||||||
|
type: parsed
|
||||||
|
protocol: NECext
|
||||||
|
address: 75 5D 00 00
|
||||||
|
command: 47 B8 00 00
|
||||||
|
#
|
||||||
|
name: Mist
|
||||||
|
type: parsed
|
||||||
|
protocol: NECext
|
||||||
|
address: 75 5D 00 00
|
||||||
|
command: 07 F8 00 00
|
||||||
|
#
|
||||||
|
name: Auto_off
|
||||||
|
type: parsed
|
||||||
|
protocol: NECext
|
||||||
|
address: 75 5D 00 00
|
||||||
|
command: 09 F6 00 00
|
||||||
|
#
|
||||||
|
name: Humidi_stat
|
||||||
|
type: parsed
|
||||||
|
protocol: NECext
|
||||||
|
address: 75 5D 00 00
|
||||||
|
command: 0C F3 00 00
|
||||||
|
#
|
||||||
|
name: Anion
|
||||||
|
type: parsed
|
||||||
|
protocol: NECext
|
||||||
|
address: 75 5D 00 00
|
||||||
|
command: 5E A1 00 00
|
20
README.md
20
README.md
@ -76,16 +76,16 @@ name: Power
|
|||||||
Please use this naming scheme for buttons.
|
Please use this naming scheme for buttons.
|
||||||
This helps us create universal assets more easily and maintain consistency.
|
This helps us create universal assets more easily and maintain consistency.
|
||||||
|
|
||||||
| TVs | Audio | ACs |
|
| TVs | Audio | ACs | LEDs |
|
||||||
| --------- | -------- | --------- |
|
| --------- | -------- | --------- | --------------- |
|
||||||
| `Power` | `Power` | `Off` |
|
| `Power` | `Power` | `Off` | `Power_off` |
|
||||||
| `Vol_up` | `Vol_up` | `Cool_hi` |
|
| `Vol_up` | `Vol_up` | `Cool_hi` | `Power_on` |
|
||||||
| `Vol_dn` | `Vol_dn` | `Cool_lo` |
|
| `Vol_dn` | `Vol_dn` | `Cool_lo` | `Brightness_up` |
|
||||||
| `Ch_next` | `Next` | `Heat_hi` |
|
| `Ch_next` | `Next` | `Heat_hi` | `Brightness_dn` |
|
||||||
| `Ch_prev` | `Prev` | `Heat_lo` |
|
| `Ch_prev` | `Prev` | `Heat_lo` | `Red` |
|
||||||
| `Mute` | `Mute` | `Dh` |
|
| `Mute` | `Mute` | `Dh` | `Green` |
|
||||||
| | `Play` | |
|
| | `Play` | | `Blue` |
|
||||||
| | `Pause` | |
|
| | `Pause` | | `White` |
|
||||||
|
|
||||||
|
|
||||||
## Universal Remotes
|
## Universal Remotes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user