Skip to content

Commit

Permalink
Added Flutter App Demo Video to the README (#29)
Browse files Browse the repository at this point in the history
- Updated README with the YouTube Flutter App demo video
  • Loading branch information
abobija committed Apr 28, 2024
1 parent ed2f57b commit d6175ba
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.4

- Added Flutter App Demo Video to the README

## 2.0.3

- Parameter `bssid` of `ProvisioningRequest`s factory `fromStrings` is not required anymore. If ommited, `bssid` will default to `00:00:00:00:00:00`.
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ The breaking change was implemented with 14.6. However, it seems to be the case
- After the Dev-Account has been approved, you have to make a request via this [form](https://developer.apple.com/contact/request/networking-multicast) to be allowed to use the Multicast Api.
- Then you can follow this [guide](https://developer.apple.com/forums/thread/663271?answerId=639455022#639455022) (new process)

## Demo video
## Demo videos

| Console App | Flutter Mobile App |
| --- | --- |
| [![Demo Video - Console App](https://img.youtube.com/vi/yjxtwQ8Xpuo/mqdefault.jpg)](https://youtu.be/yjxtwQ8Xpuo) | [![Demo Video - Flutter Mobile App](https://img.youtube.com/vi/bE5uClhBgxM/mqdefault.jpg)](https://youtu.be/bE5uClhBgxM) |

[![Demo YouTube video](https://img.youtube.com/vi/yjxtwQ8Xpuo/mqdefault.jpg)](https://youtu.be/yjxtwQ8Xpuo)

## Example

Expand All @@ -46,7 +49,7 @@ provisioner.listen((response) {
try {
await provisioner.start(ProvisioningRequest.fromStrings(
ssid: "NETWORK NAME",
bssid: "ROUTER BSSID",
bssid: "ROUTER BSSID", // Optional
password: "NETWORK PASSWORD",
));
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: esp_smartconfig
description: EspTouch and EspTouchV2 implementations of SmartConfig provisioning protocols. Plain Dart. All platforms.
version: 2.0.3
version: 2.0.4
homepage: https://abobija.com
repository: https://github.com/abobija/esp-smartconfig-dart

Expand Down

0 comments on commit d6175ba

Please sign in to comment.