esp_rainmaker_association 1.0.0 copy "esp_rainmaker_association: ^1.0.0" to clipboard
esp_rainmaker_association: ^1.0.0 copied to clipboard

Native dart implementation of ESP Rainmaker provisioning and user mapping.

Introduction #

A native dart implementation of ESP Rainmaker provisioning and user mapping.

Currently only security 0 is supported and there are no plans to implement security 1, though pull requests would be welcome.

Usage #

A simple usage example:

import 'package:esp_rainmaker_association/rainmaker_association.dart';
import 'package:uuid/uuid.dart';

Future<void> main() async {
  final device = EspDevice();
  final mapping = UserMapping(device);

  final networks = await device.scanNetworks();
  print(networks);

  final uidGen = Uuid();
  final secKey = uidGen.v1();

  await mapping.mapUser('user_id', secKey);
  await device.provision('ssid', 'pass');
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

2
likes
120
pub points
20%
popularity

Publisher

unverified uploader

Native dart implementation of ESP Rainmaker provisioning and user mapping.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

http, protobuf

More

Packages that depend on esp_rainmaker_association