Rfs kkl 002 bluetooth приложение

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

Redmond SkyKettle integration for Home Assistant

License

ClusterM/skykettle-ha

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

Redmond SkyKettle integration for Home Assistant

This integration allows to control smart kettles from Redmond SkyKettle series.

image

image

image

  • RK-G200
  • RK-G200S
  • RK-G201S
  • RK-G202S
  • RK-G203S
  • RK-G204S
  • RK-G210S
  • RK-G211S
  • RK-G212S
  • RK-G213S
  • RK-G214S
  • RK-G215S
  • RK-G233S
  • RK-G240S
  • RK-M139S
  • RK-M171S
  • RK-M215S
  • RK-M216S
  • RK-M223S
  • RK-M136S
  • RFS-KKL002
  • RFS-KKL003
  • RFS-KKL004
  • .

If your kettle model is not listed, please write an issue and I’ll try to add support for it with your help. Models RK-M123S, RK-M170S and RK-M173S are especially wanted.

  • Allows to set target temperature.
  • Allows to set any boil mode: heating (keep desired temperature), standard boiling, boiling+heating.
  • Allows to change many settings of the kettle directly from Home Assistant, even more settings than the official application allows.
  • Allows to read all statistics, even more than the official application allows.
  • Allows to use kettle as RGB lamp.
  • Automatic mode change if target temperature changed, allows easy control from Google Assistant, Yandex Alice, etc.
  • Persistent connection and fast reconnect.
  • Make sure that you are using Home Assistant version 2022.8.1 or greater.
  • Make sure that Bluetooth integration is installed, enabled and working.
  • Install SkyKettle integration via HACS — search for SkyKettle or just copy skykettle directory to your custom_components directory.
  • Add SkyKettle integration just like any other integration (restart Home Assistant and press Shift+F5 if it’s not listed).
  • Make sure that the Kettle is on the stand and it’s plugged into the outlet.
  • Select MAC address of your kettle from the list.
  • Tune rest of the settings if you want.
  • Enjoy.
Читайте также:  With bluetooth audio перевод

The default entity names are listed below. Note that some entities can be missed on your kettle model.

This is main entity to control water boiling and heating. There are five operation modes:

  • Off — the kettle is off, not heating at all.
  • Heat — just heat water to the desired temperature and keep this temperature. Without boiling. Useful when water already boiled and you need just to warm it up.
  • Boil — boil water and turn off (switch to «Off» mode).
  • Boil+heat — boil water, wait until temperature drops to the desired temperature and keep this temperature.
  • Lamp — use kettle as night light, color changes between the selected ones (see below).
  • Light — use kettle as night light but keep the only one selected color (see below).

This entity allows to control the «Light» mode. You can select brightness and color when this mode is active. The «Light» mode will be enabled automatically when this virtual light is on.

Just virtual switch to control the kettle. Turn it on to switch the kettle to «Boil» mode and turn it off for «Off» mode.

Virtual sensor to check how long the water has been in the kettle. Actually, it’s just kettle uptime.

number.kettle_model_boil_time (Boil time)

This is configuration entity to select boil time from -5 to +5 just like in the official app.

switch.kettle_model_enable_boil_light (Enable boil light)

This is configuration entity to enable or disable the boil light. This light in on when «Heat», «Boil» or «Boil+Heat» mode is active. Color depends on the current water temperature (see below).

switch.kettle_model_enable_sound (Enable sound).

This is configuration entity to enable or disable kettle beeping sounds.

switch.kettle_model_enable_sync_light (Enable sync light)

This is configuration entity to enable or disable the idle light. This light in on when «Off» mode is active. Color depends on the current water temperature (see below).

light.kettle_model_lamp_1_color (Lamp color #1), light.kettle_model_lamp_2_color (Lamp color #2) and light.kettle_model_lamp_3_color (Lamp color #3)

These are three configuration entities to select colors in the «Lamp» mode. The color will change smoothly from #1 to #2, from #2 to #3 and back.

number.kettle_model_lamp_color_change_interval (Lamp color change interval)

This is configuration entity to select color change interval in the «Lamp» mode. In seconds. Minimum is 30 seconds.

Читайте также:  Код ошибки 43 bluetooth ноутбук

number.kettle_model_lamp_auto_off_time (Lamp auto off time)

This is configuration entity to select lamp auto off time in hours. Lamp will be turned off after this time passed.

number.kettle_model_temperature_1 (Temperature #1), light.kettle_model_temperature_1_color (Temperature #1 color), number.kettle_model_temperature_2 (Temperature #2), light.kettle_model_temperature_2_color (Temperature #2 color) and number.kettle_model_temperature_3 (Temperature #3), light.kettle_model_temperature_3_color (Temperature #3 color)

These are six configuration entities to select colors for the «boil light» and «sync light». You can select three colors and temperature for each color. The color will change smoothly.

sensor.skykettle_rk_g211s_success_rate (Success rate)

Diagnostic entity, shows percent of successfull connections and polls.

To boil and turn off after boiling

sequence: - service: water_heater.set_operation_mode data: operation_mode: Boil target: entity_id: water_heater.skykettle_rk_g211

Also you can use water_heater.turn_on service when the kettle is off/idle:

sequence: - service: water_heater.turn_on data: <> target: entity_id: water_heater.skykettle_rk_g211

To boil and keep desired temperature

sequence: - service: water_heater.set_operation_mode data: operation_mode: Boil+Heat target: entity_id: water_heater.skykettle_rk_g211 - service: water_heater.set_temperature data: temperature: 90 target: entity_id: water_heater.skykettle_rk_g211

To warm up and keep desired temperature without boiling

sequence: - service: water_heater.set_operation_mode data: operation_mode: Heat target: entity_id: water_heater.skykettle_rk_g211 - service: water_heater.set_temperature data: temperature: 90 target: entity_id: water_heater.skykettle_rk_g211
sequence: - service: water_heater.set_operation_mode data: operation_mode: off target: entity_id: water_heater.skykettle_rk_g211

Also you can use water_heater.turn_off service:

sequence: - service: water_heater.turn_off data: <> target: entity_id: water_heater.skykettle_rk_g211

Turn the kettle into a lamp

sequence: - service: light.turn_on data: rgb_color: - 255 - 100 - 255 brightness: 255 target: entity_id: light.skykettle_rk_g211_light

You can use the card_mod integration to make the color of the card icon depend on the temperature of the kettle.

type: vertical-stack cards: - type: button tap_action: action: more-info entity: water_heater.skykettle_rk_g211 show_state: true name: Чайник hold_action: action: toggle card_mod: style: > :host < --card-mod-icon: 95 %> mdi:kettle-steam; mdi:kettle; --card-mod-icon-color: hsl( >, >%, 50% ) black ; > - type: entities entities: - entity: water_heater.skykettle_rk_g211 card_mod: style: > :host < --card-mod-icon: 95 %> mdi:kettle-steam; mdi:kettle; --card-mod-icon-color: hsl( >, >%, 50% ) black ; > 

image

Источник

RFS KKL004 / RFS KKL002 — что это за устройство?

Приветствую всех!

RFS KKL004 / RFS KKL002 — это блютуз-адаптер, который может быть встроен в разные устройства, например ноутбуки, беспроводные наушники и даже чайник.

Скажу сразу: если вы видите RFS KKL004 или RFS KKL002 (название может быть похожим) — значит это может быть любое устройство, где есть блютуз, компания, которая выпускает эти блютуз-адаптеры, они не ставятся в определенный тип устройств, как раз нет, это может быть ноут, чайник, наушники и другие девайсы. Так что смотрите что у вас включено, какие устройства имеют блютуз и анализируйте.

Разбираемся

  1. RFS расшифровывается как Radio Frequency Systems, это компания, которая создает разные антенны, например многополосные, пассивные, однополосные, гибридные, автономные, по антеннам компания мастер. Также создает дистанционные электрические устройства, специальные кабели и остальное, что в этом духе. Скорее всего устройства RFS KKL004 или RFS KKL002 — имеют отношение к этой компании.
  2. Один пользователь попробовал подключить устройство RFS KKL004, в итоге телефон сообщил, что нужно зайти в приложение, чтобы установить соединение с этим устройством. Из чего можно сделать вывод, что это могут быть беспроводные наушники.
  3. На сайте драйверов к Apple MacBookPro нашел упоминание RFS-KKL002, то есть это может быть и модуль блютуза в Макбуке.
  4. Еще RFS-KKL003 упоминается на сайте драйверов к ноутбуку LENOVO 20278 (B5400), то есть снова блютуз-адаптер. И среди драйверов к ASUSTeK S551LB — RFS-KKL003 тоже встречается.
Читайте также:  Падает скорость wifi при включении bluetooth наушников

Также под RFS KKL002 может быть чайник, в прямом смысле чайник, у которого присутствует блютуз, например модель Redmond SkyKettle G210S:

Надеюсь данная информация хотя бы немного была полезной. Удачи и добра, до новых встреч друзья!

Источник

Rfs kkl 002 bluetooth приложение

enhanced by Google

Виджет Bluetooth: подключение Tomas Hadraba · Музыка и аудио 1 млн+ 4,2 ★ 34 MB

icon

подключение по блютуз LiteStudio · Инструменты 1 млн+ 3,7 ★ 5 MB

icon

Bluetooth Codec Changer AmrG DEV · Инструменты 50 тыс.+ 4,1 ★ 4 MB

icon

Сканер BLE(связать и извещать) Bluepixel Technologies · Инструменты 1 млн+ 4,0 ★ 6 MB

icon

Усилитель звука Google LLC · Связь 100 млн+ 4,2 ★ 26 MB

Wireless Earphones ColorOS · Инструменты 50 млн+ 3,5 ★ 23 MB

icon

Car Scanner ELM OBD2 0vZ · Автомобили и транспорт 10 млн+ 4,7 ★ 77 MB

icon

Galaxy Wearable Samsung Electronics Co., Ltd. · Инструменты 500 млн+ 4,3 ★ 6 MB

icon

realme Link realme Mobile · Стиль жизни 10 млн+ 4,5 ★ 169 MB

icon

nRF Toolbox for Bluetooth LE Nordic Semiconductor ASA · Инструменты 100 тыс.+ 3,8 ★ 4 MB

icon

Google Pixel Buds Google LLC · Музыка и аудио 10 млн+ 3,2 ★ 40 MB

icon

nRF Connect for Mobile Nordic Semiconductor ASA · Инструменты 1 млн+ 4,4 ★ 10 MB

icon

Beats Apple · Инструменты 5 млн+ 3,3 ★ 69 MB

icon

Sony | Headphones Connect Sony Corporation · Инструменты 10 млн+ 4,4 ★ 61 MB

icon

Soundcore Anker · Инструменты 1 млн+ 4,5 ★ 137 MB

icon

Spectroid Carl Reinke · Инструменты 1 млн+ 4,6 ★ 105 KB

icon

JBL Headphones Harman Consumer, Inc. · Музыка и аудио 5 млн+ 4,4 ★ 92 MB

icon

Jabra Sound+ Jabra by GN Audio · Работа 5 млн+ 4,4 ★ 178 MB

icon

Эквалайзер для Bluetooth AudiosMaxs · Музыка и аудио 1 млн+ 4,3 ★ 4 MB

icon

EFR Connect BLE Mobile App Silicon Laboratories · Инструменты 50 тыс.+ 3,7 ★ 55 MB

icon

Bose Connect Bose Corporation · Музыка и аудио 10 млн+ 4,3 ★ 48 MB

icon

SmartBT iPlug Shenzhen Anghui Electronic Technology Co., Ltd. · Инструменты 100 тыс.+ 3,9 ★ 19 MB

icon

ANT Radio Service ANT+ · Связь 1 млрд+ 3,4 ★ 124 KB

icon

HScope MartinLoren · Инструменты 100 тыс.+ 4,4 ★ 8 MB

Android Emulator

Лучший Эмулятор Андроида для ПК

Источник

Оцените статью
Adblock
detector