An open API service indexing awesome lists of open source software.

https://github.com/chmoore889/esp_rainmaker

A wrapper of the ESP Rainmaker REST API for client-cloud communication.
https://github.com/chmoore889/esp_rainmaker

esp-rainmaker esp32 espressif

Last synced: about 1 month ago
JSON representation

A wrapper of the ESP Rainmaker REST API for client-cloud communication.

Awesome Lists containing this project

README

        

## Introduction
A wrapper of the ESP Rainmaker REST API for client-cloud communication.

Uses the [isolate_json](https://pub.dev/packages/isolate_json) package for decoding/encoding JSONs. This allows this package to use the same isolate for decoding/encoding as this package's complement, [esp_rainmaker_local_control](https://pub.dev/packages/esp_rainmaker_local_control).

## Usage

A simple usage example:

```dart
import 'package:esp_rainmaker/esp_rainmaker.dart';

Future main() async {
final user = User();

//Create new user
await user.createUser('[email protected]', 'password12345');

//Login and extend session
final login = await user.login('[email protected]', 'password12345');
await user.extendSession('[email protected]', login.refreshToken);

//Add node mapping and check status
final nodeAssociation = NodeAssociation(login.accessToken);
final reqId = await nodeAssociation.addNodeMapping('nodeid1234', 'very_secret_key');
await nodeAssociation.getMappingStatus(reqId);
}
```

## Features and bugs

Please file feature requests and bugs at the [issue tracker][tracker].

[tracker]: https://github.com/chmoore889/esp_rainmaker/issues