openrgb 0.2.5 copy "openrgb: ^0.2.5" to clipboard
openrgb: ^0.2.5 copied to clipboard

OpenRGB Dart Client to communicate with OpenRGB Server and control RGB LEDs. Protocol Version 3.

example/main.dart

import 'package:openrgb/openrgb.dart';

Future<void> main() async {
  // Async Client
  final asyncClient = await OpenRGBClient.connect();
  final controllers = await asyncClient.getAllControllers();
  print(controllers);
  // Sync Client
  final syncClient = OpenRGBSyncClient.connect();
  final syncControllers = syncClient.getAllControllers();
  print(syncControllers);
}
2
likes
150
points
38
downloads

Publisher

unverified uploader

Weekly Downloads

OpenRGB Dart Client to communicate with OpenRGB Server and control RGB LEDs. Protocol Version 3.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

async, color, quiver

More

Packages that depend on openrgb