strip, bus device

move stripdevice and busdevice back to strip & bus
This commit is contained in:
pblivingston
2025-11-27 06:09:55 -05:00
parent 820b897e84
commit 3f7bef56c1
3 changed files with 31 additions and 31 deletions

View File

@@ -162,6 +162,15 @@ class StripEq : IRemote {
}
}
class StripDevice : Device {
StripDevice ([int]$index, [Object]$remote) : base ($index, $remote) {
}
[string] identifier () {
return 'Strip[' + $this.index + '].Device'
}
}
class VirtualStrip : Strip {
VirtualStrip ([int]$index, [Object]$remote) : base ($index, $remote) {
AddBoolMembers -PARAMS @('mc')