DevBot9.Protocols.Homie
0.10.0
See the version list below for details.
dotnet add package DevBot9.Protocols.Homie --version 0.10.0
NuGet\Install-Package DevBot9.Protocols.Homie -Version 0.10.0
<PackageReference Include="DevBot9.Protocols.Homie" Version="0.10.0" />
paket add DevBot9.Protocols.Homie --version 0.10.0
#r "nuget: DevBot9.Protocols.Homie, 0.10.0"
// Install DevBot9.Protocols.Homie as a Cake Addin #addin nuget:?package=DevBot9.Protocols.Homie&version=0.10.0 // Install DevBot9.Protocols.Homie as a Cake Tool #tool nuget:?package=DevBot9.Protocols.Homie&version=0.10.0
Another Homie Convention (homieiot.github.io) C# implementation.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.1
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
net5.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on DevBot9.Protocols.Homie:
Package | Downloads |
---|---|
DevBot9.Protocols.Homie.Utilities
Some optional utility classes to make your life with YAHI easier. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.12.0-preview.22 | 93 | 1/19/2024 |
0.12.0-preview.21 | 140 | 10/10/2022 |
0.12.0-preview.18 | 145 | 6/6/2022 |
0.12.0-preview.15 | 192 | 12/21/2021 |
0.12.0-preview.14 | 243 | 11/7/2021 |
0.12.0-preview.13 | 174 | 10/19/2021 |
0.12.0-preview.12 | 162 | 10/19/2021 |
0.12.0-preview.8 | 192 | 10/18/2021 |
0.12.0-preview.5 | 144 | 10/14/2021 |
0.11.1 | 751 | 10/11/2021 |
0.10.0 | 465 | 8/2/2021 |
0.10.0-preview.57 | 193 | 7/28/2021 |
0.10.0-preview.54 | 175 | 7/27/2021 |
0.10.0-preview.44 | 155 | 7/22/2021 |
0.10.0-preview.30 | 190 | 7/12/2021 |
0.10.0-preview.20 | 182 | 7/11/2021 |
0.10.0-preview.18 | 184 | 7/8/2021 |
0.10.0-preview.13 | 191 | 7/2/2021 |
0.10.0-preview.8 | 189 | 7/1/2021 |
0.9.0 | 492 | 6/28/2021 |
0.9.0-preview.43 | 221 | 6/6/2021 |
0.9.0-preview.38 | 204 | 5/23/2021 |
0.9.0-preview.34 | 181 | 5/14/2021 |
0.9.0-preview.28 | 238 | 5/7/2021 |
0.9.0-preview.13 | 193 | 5/3/2021 |
0.8.0 | 442 | 4/24/2021 |
0.7.0 | 377 | 3/16/2021 |
0.6.0 | 424 | 3/12/2021 |
0.5.1 | 402 | 3/11/2021 |
0.5.0 | 365 | 2/16/2021 |
0.4.0 | 410 | 2/6/2021 |
0.3.0 | 375 | 1/29/2021 |
0.2.0 | 363 | 1/26/2021 |
0.1.1 | 428 | 1/12/2021 |
0.1.0 | 404 | 1/12/2021 |
## [0.10.0] - 2021-08-02
### Added
- Adding IMqttBroker interface. Every real-world broker client now needs a wrapper implementing it.
- Device base class is now disposable.
- Brought back support for client side integers and booleans. They are silently converted to float and enum counterparts.
- Added support for client side DateTime properties.
- Adding Tags Hashtable to client and host properties. It will keep off-Homie parameters like decimal places for float numbers.
- Exposing NodeId field for the ClientNode.
- Exposing ClientPropertyBaser.RawValue for read-only usage.
### Changed
- Blending in broker functionality into Device class to simplify initialization.
- Host/Client devices now require to be initialized with provided IMqttBroker instance.
- Reworked connection logic again. Client and Host sides now have different connection to broker types. May be easier to handle client-only applications which may now have a single connection for all client devices. Host devices are still one connection per device.
- Renaming Float|String|Enum|String properties to Number|Text|Choice|Text. This better reflects real life usage.
- Restructuring TestApp initialization routine and logging more stuff for error detection.
- NumberProperty is now a true double precision one.
- Exposing client property ID for read-only usage.
### Fixed
- Client properties should not react to /set commands.
- Publishing Device state on reconnect to clear lost state.
- SET messages are now sent as non-retained.
- Fixing node topic paths.
- Initial value was not set for client properties when checking possible enum values.
- ClientDeviceMetadata will not not parse topics with empty payload.
- Fixed Lightbulb producer is-on property initialization.
- Consolidating all the property metadata validation under a single umbrella. Also making validation much more strict and robust.
### Removed
- Removing Boolean properties. Enum (now Choice) property is superior.
- Removing Integer properties. Float (now Number) property is superior.