jmb_aqualight 1.0.4 copy "jmb_aqualight: ^1.0.4" to clipboard
jmb_aqualight: ^1.0.4 copied to clipboard

outdated

Library to interact with the JMB Aqualight controller over UDP.

example/jmb_aqualight_example.dart

import 'package:jmb_aqualight/jmb_aqualight.dart';

const SCHEDULE = [
  [100, 100, 100, 100, 100], // 00:00
  [0, 0, 0, 0, 0], // 00:30
  [10, 100, 50, 0, 0], // 01:00
  [10, 100, 0, 50, 0], // 01:30
  [10, 100, 0, 0, 50], // 02:00
  [10, 40, 100, 0, 0], // 02:30
  [10, 40, 0, 100, 0], // 03:00
  [10, 40, 0, 0, 100], // 03:30
  [10, 0, 50, 0, 0], // 04:00
  [10, 100, 100, 100, 100], // 04:30
  [50, 0, 0, 0, 0], // 05:00
  [50, 0, 0, 0, 0], // 05:30
  [50, 0, 0, 0, 0], // 06:00
  [50, 0, 0, 0, 0], // 06:30
  [50, 0, 0, 0, 0], // 07:00
  [50, 0, 0, 0, 0], // 07:30
  [50, 0, 0, 0, 0], // 08:00
  [50, 0, 0, 0, 0], // 08:30
  [50, 0, 0, 0, 0], // 09:00
  [50, 0, 0, 0, 0], // 09:30
  [50, 0, 0, 0, 0], // 10:00
  [50, 0, 0, 0, 0], // 10:30
  [100, 0, 0, 0, 0], // 11:00
  [100, 0, 0, 0, 0], // 11:30
  [100, 0, 0, 0, 0], // 12:00
  [100, 0, 0, 0, 0], // 12:30
  [100, 0, 0, 0, 0], // 13:00
  [100, 0, 0, 0, 0], // 13:30
  [100, 0, 0, 0, 0], // 14:00
  [0, 0, 0, 0, 0], // 14:30
  [100, 0, 0, 0, 0], // 15:00
  [100, 0, 0, 0, 0], // 15:30
  [100, 0, 0, 0, 0], // 16:00
  [20, 0, 0, 0, 0], // 16:30
  [20, 0, 0, 0, 0], // 17:00
  [20, 0, 0, 0, 0], // 17:30
  [20, 0, 0, 0, 0], // 18:00
  [20, 0, 0, 0, 0], // 18:30
  [20, 0, 0, 0, 0], // 19:00
  [100, 0, 0, 0, 0], // 19:30
  [100, 0, 0, 0, 0], // 20:00
  [100, 0, 0, 0, 0], // 20:30
  [100, 0, 0, 0, 0], // 21:00
  [0, 0, 0, 0, 0], // 21:30
  [0, 0, 0, 0, 0], // 22:00
  [0, 0, 0, 0, 0], // 22:30
  [0, 0, 0, 0, 0], // 23:00
  [0, 0, 0, 0, 0] // 23:30
];

void main(List<String> arguments) async {
  var connectionInfo = await connect();

  var command = arguments.isEmpty ? 'schedule' : arguments[0];

  if (command == 'live') {
    await liveSchedule(connectionInfo, SCHEDULE, false);
  } else if (command == 'sync') {
    await timeSync(connectionInfo);
  } else if (command == 'schedule') {
    await uploadSchedule(connectionInfo, SCHEDULE);
  }
}
0
likes
40
pub points
0%
popularity

Publisher

verified publishermadx.nl

Library to interact with the JMB Aqualight controller over UDP.

Homepage

License

BSD-3-Clause (LICENSE)

More

Packages that depend on jmb_aqualight