Skip to content

Feature/matter britzyhub #2189

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions drivers/SmartThings/sinux-britzyhub/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# BritzyHub Matter Edge Driver

Edge driver for registering BritzyHub Matter dedicated Matter devices.

---

## Reference
6 changes: 6 additions & 0 deletions drivers/SmartThings/sinux-britzyhub/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: BritzyHub Matter
packageKey: britzyhub-matter
permissions:
matter: {}
description: SmartThings Edge driver for BritzyHub Matter devices.
vendorSupportInformation: https://sinux.kr
21 changes: 21 additions & 0 deletions drivers/SmartThings/sinux-britzyhub/fingerprints.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
matterGeneric:
#- id: "air-conditioner"
# deviceLabel: "Air Conditioner"
# deviceTypes:
# - id: 0x0072 # Room Air Conditioner
# deviceProfileName: air-conditioner
- id: "elevator"
deviceLabel: "Elevator"
deviceTypes:
- id: 0xFF02
deviceProfileName: elevator
- id: "gas-valve"
deviceLabel: "Gas Valve"
deviceTypes:
- id: 0xFF01
deviceProfileName: gas-valve
- id: "ventilator"
deviceLabel: "Ventilator"
deviceTypes:
- id: 0xFF03
deviceProfileName: ventilator
16 changes: 16 additions & 0 deletions drivers/SmartThings/sinux-britzyhub/profiles/air-conditioner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: air-conditioner
components:
- id: main
capabilities:
- id: switch
version: 1
- id: thermostatMode
version: 1
- id: airConditionerFanMode
version: 1
- id: thermostatCoolingSetpoint
version: 1
- id: temperatureMeasurement
version: 1
categories:
- name: AirConditioner
14 changes: 14 additions & 0 deletions drivers/SmartThings/sinux-britzyhub/profiles/dimming-light.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: dimming-light
components:
- id: main
capabilities:
- id: switch
version: 1
- id: switchLevel
version: 1
config:
values:
- key: "level.value"
range: [1, 100]
categories:
- name: Light
8 changes: 8 additions & 0 deletions drivers/SmartThings/sinux-britzyhub/profiles/elevator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: elevator
components:
- id: main
capabilities:
- id: elevatorCall
version: 1
categories:
- name: Elevator
8 changes: 8 additions & 0 deletions drivers/SmartThings/sinux-britzyhub/profiles/gas-valve.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: gas-valve
components:
- id: main
capabilities:
- id: valve
version: 1
categories:
- name: GasValve
12 changes: 12 additions & 0 deletions drivers/SmartThings/sinux-britzyhub/profiles/ventilator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: ventilator
components:
- id: main
capabilities:
- id: switch
version: 1
- id: airPurifierFanMode
version: 1
- id: fanSpeedPercent
version: 1
categories:
- name: Vent
Loading