tesla 0.4.0 copy "tesla: ^0.4.0" to clipboard
tesla: ^0.4.0 copied to clipboard

Control and monitor Tesla Products

example/tesla.dart

import 'dart:async';

import 'package:tesla/tool.dart';

Future main() async {
  var client = getTeslaClient();
  for (var vehicle in await client.listVehicles()) {
    print("Vehicle ${vehicle.displayName} is ${vehicle.state}");
  }
  client.close();
}