Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/tuyanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-07-10 15:08:31 +0300
committerGitHub <noreply@github.com>2022-07-10 15:08:31 +0300
commit975de302b42d66c88daa501adb244c9dbf630898 (patch)
tree54df8f94785aedb165668614bbe95cd5f71edae6
parent66474cdbedaba328ffca4417a7e46e50dff4bc90 (diff)
Update README.md
-rw-r--r--README.md18
1 files changed, 16 insertions, 2 deletions
diff --git a/README.md b/README.md
index 5ef2060..05e1538 100644
--- a/README.md
+++ b/README.md
@@ -242,12 +242,26 @@ Then obtain local key:
await dev.RefreshLocalKeyAsync()
```
+### IR Remote Control
+
+Since version 1.0.3 you can control infrared remote controls. There is TuyaIRControl class for it. You can learn button from real remote control using `GetButtonCodeAsync` method (it returns Base64-encoded pulses sequences) and simulate button press using `SendButtonCodeAsync` method.
+Example:
+```C#
+string codeBase64 = await ir.GetButtonCodeAsync(10000, retries: 1);
+Console.WriteLine($"Button code learned: {codeBase64}");
+while (true)
+{
+ await ir.SendButtonCodeAsync(codeBase64);
+ Console.WriteLine("Button press simulated");
+ await Task.Delay(1000);
+}
+```
+
## Using the Cloud API
You can use official [Tuya Cloud API](https://developer.tuya.com/en/docs/cloud/).
-```C#
Example of [device specifications](https://developer.tuya.com/en/docs/cloud/device-control?id=K95zu01ksols7#title-27-Get%20the%20specifications%20and%20properties%20of%20the%20device%2C%20including%20the%20instruction%20set%20and%20status%20set) request:
-
+```C#
var api = new TuyaApi(region: TuyaApi.Region.CentralEurope, accessId: ACCESS_ID, apiSecret: API_SECRET);
var devspec = await api.RequestAsync(TuyaApi.Method.GET, $"/v1.1/devices/{DEVICE_ID}/specifications");
```