Skip to content

Commit

Permalink
fix for WRGB II Pro #21
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMicDiet committed May 19, 2024
1 parent 30430a4 commit fefbb5e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions custom_components/chihiros/chihiros_led_control/device/a2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
"""A2 device Model."""

from .base_device import BaseDevice


class AII(BaseDevice):
"""Chihiros A II device Class."""

_model_name = "A II"
_model_codes = ["DYNA2", "DYNA2N"]
_colors: dict[str, int] = {
"white": 0,
}

0 comments on commit fefbb5e

Please sign in to comment.