kwolo.tuya.net
1.0.5
dotnet add package kwolo.tuya.net --version 1.0.5
NuGet\Install-Package kwolo.tuya.net -Version 1.0.5
<PackageReference Include="kwolo.tuya.net" Version="1.0.5" />
paket add kwolo.tuya.net --version 1.0.5
#r "nuget: kwolo.tuya.net, 1.0.5"
// Install kwolo.tuya.net as a Cake Addin #addin nuget:?package=kwolo.tuya.net&version=1.0.5 // Install kwolo.tuya.net as a Cake Tool #tool nuget:?package=kwolo.tuya.net&version=1.0.5
Tuya.net
About
.net core library to retrieve Tuya smart home IoT data and switch them on and off
References
Basic operations pulled from the Javascript library at https://github.com/ndg63276/smartlife with thanks to Github user "Mark W"
Supported operations
Right now the library supports the following functionality:
- Authenticate
- Fetch device list
- Turn a switch on
- Turn a switch off
It has only been tested on bizType=tuya
/ from=tuya
devices, unlike the original Javascript project that also supports bizType=smart_life
(and possibly others). This wouldn't be hard to configure, but I don't have a way to test them.
Building
The library is a .net 8 class library, with a helper / sample app as a .net core 8 console app.
appsettings.json (test harness)
If you want to run the test harness then you'll need to create an appsettings.json
file in the test harness folder.
The structure of this file should look like this:
{
"Logging": {
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information",
"System.Net.Http.HttpClient": "Trace"
}
},
"TestHarnessConfiguration": {
"UserName": "your tuya login",
"Password": "your tuya password",
"CountryCode": "EU"
}
}
The CountryCode
can be one of:
- EU for Europe / UK
- US for United States / Canada
- AY for China / AsiaPac
Nuget package
Nuget package is available here: https://www.nuget.org/packages/kwolo.tuya.net
Sample calls
See the TestHarness
project for sample code, which contains the following:
var session = await _authenticatorService.AuthenticateAsync(_config.UserName, _config.Password, _config.CountryCode);
var devices = await _deviceListFetcher.GetDeviceListAsync(session);
await _deviceSwitcher.SwitchOnAsync(devices[0].Id, session);
await Task.Delay(2000);
await _deviceSwitcher.SwitchOffAsync(devices[0].Id, session);
First, we authenticate, which returns an AuthenticatedSession
. That session contains an access code as well as an expiration - be wary of this expiring!
Next, we fetch the list of devices, passing it the authenticated session.
This is a List<Device>
- check the Device
class to see what is returned.
Once we have a list of devices, the test harness assumes that there is at least one, and that it's a switch. You'll need to do a little sorting through the list of you have multiple devices, and multiple device types.
Finally, we switch the device on via DeviceSwitcher.SwitchOnAsync()
and then off again, with a two second delay between the operations.
Contributions welcome!
I actually only wrote this so I could control a single switch, so job done for me. If you have additional Tuya devices and want to contribute to the project then please feel free!
Please note that merge/pull requests without unit tests will probably not get approved...
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- Microsoft.Extensions.Http (>= 3.1.8)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.