neohub 0.0.1
neohub: ^0.0.1 copied to clipboard
Dart / Flutter API for NeoHub from Heatmiser.
example/neohub_example.dart
/// Example of running the NeoHub
/// Change the Address to the IP address of your hub.
import 'package:neohub/neohub.dart';
const NEOHUB_ADDRESS = '10.0.0.30';
main() async {
final hub = NeoHub(NEOHUB_ADDRESS);
print(await hub.getZones());
}