A dart library for controlling Barco Event Master systems via JSON RPC
Currently Supported Functions
I am adding these as I require them. If you would like a specific one added, feel free to open a ticket.
x
activatePresetx
changeAuxContent
Usage
import 'dart:io';
import 'package:barco_event_master/barco_event_master.dart';
Future<void> main() async {
final e2 = EventMaster(address: InternetAddress('192.168.1.100'));
final r = await e2.send(
ChangeAuxContentParams(auxId: 1, programSourceIndex: 13).toRequest(),
);
print(r.toJson());
}
Additional information
Issues and feature requests can be filed here.