Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dector/wled-dart
WLED library for Dart
https://github.com/dector/wled-dart
dart wled
Last synced: 13 days ago
JSON representation
WLED library for Dart
- Host: GitHub
- URL: https://github.com/dector/wled-dart
- Owner: dector
- License: mit
- Created: 2024-01-25T23:16:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-18T17:38:07.000Z (11 months ago)
- Last Synced: 2024-11-13T16:42:43.990Z (2 months ago)
- Topics: dart, wled
- Language: Dart
- Homepage: https://pub.dev/packages/wled
- Size: 41 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# WLED API for Dart
![Pub Version](https://img.shields.io/pub/v/wled)
🚧 **ATTENTION!** Current version is totally usable but API might change multiple times before the 1.0 release. 🚧
## Changelog
See [CHANGELOG.md](CHANGELOG.md).
## Usage
``` dart
// Will be resolved to `http://localhost`.
final wled = Wled('localhost');
// or
final wled = Wled('127.0.0.1')await wled.toggle();
final status = await wled.status();
print('${wled.host} => isOn: ${status.isOn}');
```## Operations
**Implemented**:
- [x] Turn On.
- [x] Turn Off.
- [x] Toggle.
- [x] Brightness.
- [x] Change color.**Not implemented**:
- [ ] Effects.
- [ ] Palette.
- [ ] Nightlight.
- [ ] Advances: primary/secondary/third color.
- [ ] Advances: hue/saturation.
- [ ] Notifications.
- [ ] Presets.
- [ ] Macros.
- [ ] Segments.
- [ ] Reboot.
- [ ] Current/countdown time.
- [ ] Color slider mode.
- [ ] Debug IO.
- [ ] Internal mode.
- [ ] Lock.
- [ ] Experimental.
- [ ] Cronixie.
- [ ] Realtime UDP.
- [ ] Live data.
- [ ] Response parsing.