We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 562b908 commit 1679fcdCopy full SHA for 1679fcd
openrgb/orgb.py
@@ -360,3 +360,11 @@ def protocol_version(self, version: int):
360
self.comms.protocol_version = version
361
else:
362
raise ValueError(f"version {version} is greater than maximum supported version {self.comms.max_protocol_version}")
363
+
364
+ @property
365
+ def ee_devices(self):
366
+ '''
367
+ A subset of the device list that only includes devices with a direct
368
+ control mode. These devices are suitable to use with an effects engine.
369
370
+ return [dev for dev in self.devices for mode in dev.modes if mode.name.lower() == 'direct']
0 commit comments