-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge: 'credentials-provider' into 'main'
feat!: rework Form augmentation, direct discovery, and credentials provision Closes #24 and #23 See merge request namib-master/libraries/dart_wot!51
- Loading branch information
Showing
42 changed files
with
852 additions
and
603 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// Copyright 2022 The NAMIB Project Developers. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
// | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
|
||
import 'package:dart_wot/dart_wot.dart'; | ||
|
||
const propertyName = "string"; | ||
|
||
Future<void> main(List<String> args) async { | ||
final servient = Servient()..addClientFactory(CoapClientFactory()); | ||
|
||
final wot = await servient.start(); | ||
|
||
await for (final thingDescription in wot.discover(ThingFilter( | ||
url: Uri.parse("coap://plugfest.thingweb.io:5683/testthing"), | ||
method: DiscoveryMethod.direct))) { | ||
final consumedThing = await wot.consume(thingDescription); | ||
|
||
try { | ||
await consumedThing.writeProperty(propertyName, "Hello World!"); | ||
var value = await consumedThing.readProperty(propertyName); | ||
print(value); | ||
await consumedThing.writeProperty(propertyName, "Bye World!"); | ||
value = await consumedThing.readProperty(propertyName); | ||
print(value); | ||
} on Exception catch (e) { | ||
print(e); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.