Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 659 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 659 Bytes

DSLink SDK for Dart

With the DSLink SDK, you can provide IoT data to any DSA compatible consumer.

This SDK is maintained by DGLogik and other open source contributors.

Getting Started

DSLink's API is very simple!

import "package:dslink/link.dart";

void main() {
  var link = new DSLink("MyLink");
  var examples = link.createRootNode("Examples");
  var integerNode = examples.createChild("Integer Point 1", value: 1);
  
  link.connect("broker.example.com").then((_) {
    print("Connected.");
  });
}

Links