Replies: 6 comments 4 replies
-
after checking code with claud. it said "protocol 3.1 is what you need for base64-encoded color values"So i'll check that. |
Beta Was this translation helpful? Give feedback.
-
3.1 made it possible to change colors. It's still doesn't match the color grid. but it's something. |
Beta Was this translation helpful? Give feedback.
-
Before fighting with difficulties, first try an easy way: in the new automation, Add action, then select Light, Turn on. For the Target, choose device, your bulb. Tne try Color in RGB format. If it does not work, try Hue/Sat color and Brightness, for L in HSL color mode. HSL is the mode that LocalTuya accepts. HA may or may not convert RGB into HSL. |
Beta Was this translation helpful? Give feedback.
-
Yes. Tuya Bluetooth via hub and localtuya
…On Wed, Jan 1, 2025, 11:53 Bander ***@***.***> wrote:
Is this BLE bulb?
—
Reply to this email directly, view it on GitHub
<#440 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BFSL5QAVDD5ZEFM5I6CTFDD2IO3JLAVCNFSM6AAAAABUHJ22B6VHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCNZQHE2DINY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
I'm using this fork successfully https://github.com/xZetsubou/hass-localtuya |
Beta Was this translation helpful? Give feedback.
-
Okay, thank you!
I'll check it
…On Wed, Jan 1, 2025, 15:20 Bander ***@***.***> wrote:
Yes as I said the branch above #440 (reply in thread)
<#440 (reply in thread)>
is part of this fork but with BLE supported as well, it will sends the
color base64 encoded. however you will need to manually install it since it
didn't merge with master fork. the master branch you are installed doesn't
support BLE bulbs with base64 color.
—
Reply to this email directly, view it on GitHub
<#440 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BFSL5QBVELE6NJMNJ37N6DD2IPTQ5AVCNFSM6AAAAABUHJ22B6VHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCNZRGAYTANY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
Hi,
Your fork helped me connect my bulb that is connected via hub.
However, I couldn't change the colors and found our (after playing with the IOT platform), that the code is in hex format and the DP isn't published.
While i can add the DP (11).
How do i enable sending Base64 codes translations of Colour.
examples
[
{
"code": "switch_led",
"value": true
},
{
"code": "work_mode",
"value": "colour"
},
{
"code": "colour_data_raw",
"value": "AHhkZA=="
}
]
Is green.
[
{
"code": "switch_led",
"value": true
},
{
"code": "work_mode",
"value": "colour"
},
{
"code": "colour_data_raw",
"value": "APBkZA=="
}
]
Is blue
[
{
"code": "switch_led",
"value": true
},
{
"code": "work_mode",
"value": "colour"
},
{
"code": "colour_data_raw",
"value": "AABkZA=="
}
]
Is red
Beta Was this translation helpful? Give feedback.
All reactions