We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be7ccd8 commit 7ede6efCopy full SHA for 7ede6ef
1 file changed
custom_components/rav311_remote/pioneer.py
@@ -1,6 +1,12 @@
1
from __future__ import annotations
2
3
-from infrared_protocols import Command, Timing
+from infrared_protocols import Command
4
+from dataclasses import dataclass
5
+
6
+@dataclass
7
+class Timing:
8
+ high_us: int
9
+ low_us: int
10
11
PIONEER_FREQUENCY_HZ = 40_000
12
_HEADER_HIGH = 9000
0 commit comments