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
130
pub points
0%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

async, color, quiver

More

Packages that depend on openrgb