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
41
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

async, color, quiver

More

Packages that depend on openrgb