Aqara hub m1s ошибка подключения

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and
privacy statement. We’ll occasionally send you account related emails.

Already on GitHub?
Sign in
to your account

Closed

mifrith opened this issue

Jul 27, 2021

· 29 comments

Closed

Can’t add HUB M1S

#29

mifrith opened this issue

Jul 27, 2021

· 29 comments

Comments

@mifrith

Installed via HACS. I did everything according to the instructions. Without flashing the hub and with it. When I try to add an integration, I enter ip, password and token. The indicator is spinning, then the inscription «Canceled» and nothing happens. The logs are also empty.

@niceboygithub

Did you change password?
If you did not change the password in telnet, please do not input the password.

@mifrith

Tried without password and with password. The result is the same.

@niceboygithub

  1. Make sure your M1S is in Mi Home mode.
  2. Get the token
  3. Use way 2 or way 3 in https://gist.github.com/zvldz/1bd6b21539f84339c218f9427e022709
  4. After enable telnet, use putty to login telnet

@mifrith

  1. M1S is in Mi Home mode
  2. Token received
  3. Hub telnet is on
  4. Putty connection via telnet goes smoothly
    Doesn’t connect, the same message «Aborted»

@mifrith

Maybe there is a way to log all actions during connection?

In the logs on the hub itself, during an attempt to add an integration, only one message is added:
auth.info login [2235]: root login on ‘ttyp2’

@niceboygithub

What is your result in your step 4?

Can you make sure that your HA and M1S are in same domain (like 192.168.1.x)?

@mifrith

I log in to the hub via putty with the admin and without a password. Yes HA and hub are in the same domain.

@niceboygithub

Can you input the following command in putty then get the results?

@mifrith

Yes, of course, here’s the output: lumi.gateway.aeu01

@niceboygithub

@mifrith

It helped, connected the first time.

@niceboygithub

As README, this plugin is supported M1S CN now.
If you can verify on M1S EU, I can add it to support list.

@mifrith

OK, I can help with these. Tell me what to do?

@niceboygithub

Use M1S EU in Mi home mode.
Add your zigbee devices and see them if work as normal

@chaplyk

I have uncommented line 35 'lumi.gateway.aeu01': ["Aqara", "Gateway M1S", "HM1S-G01"], and installed integration.
HA works OK with my Aqara sensors added in Mi Home.

However, I have a Aqara N100 lock which cannot be added in Mi Home (Zigbee version supports Aqara Home app only). Since there is no custom firmware for EU version in your repo, can you suggest how I can switch from Mi Home mode to Aqara? (soft reset on device disables telnetd)

@niceboygithub

I have uncommented line 35 'lumi.gateway.aeu01': ["Aqara", "Gateway M1S", "HM1S-G01"], and installed integration.
HA works OK with my Aqara sensors added in Mi Home.

However, I have a Aqara N100 lock which cannot be added in Mi Home (Zigbee version supports Aqara Home app only). Since there is no custom firmware for EU version in your repo, can you suggest how I can switch from Mi Home mode to Aqara? (soft reset on device disables telnetd)

I have an idea. but I did not verity it yet. You can have a try
While M1S switch to Aqara Home, M1S do not do reboot. So there is a chance to write «post_init.sh». With «post_init.sh», it can enable telnet.

  1. telnet to M1S
  2. run script like the following code
#!/bin/sh

CUSTOM_POST_INIT=/data/scripts/post_init.sh
watching_post_init() {
    if [ ! -x ${CUSTOM_POST_INIT} ]; then
        mkdir -p /data/scripts/
        echo -e '#!/bin/sh\r\n\r\nfw_manager.sh -r\r\necho enable > /sys/class/tty/tty/enable\r\ntelnetd' > ${CUSTOM_POST_INIT}
        chmod a+x ${CUSTOM_POST_INIT}
    fi
}


main() {
    while [ 1 ]; do sleep 1; watching_post_init; done
}

main

  1. switch to Aqara Home mode (press 10 times of button and 2 times of button)
  2. verity: telnet to M1S and and check the «post_init.sh» is exist.

@chaplyk

You are a magician.

I have launched the code above (sent main() to background) and reset the hub to Aqara mode.
After reset all data was gone but telnet remained opened (even old session remained online).
I have then recreated post_init.sh and installed mosquito using a snippet from README.md.

The only problem is that /data/miio folder is now gone which contained the file with the token. However, somehow integration automatically discovered the hub and added it without token.
I have verified that sensors work in HA as expected.

@niceboygithub

You are a magician.

I have launched the code above (sent main() to background) and reset the hub to Aqara mode.
After reset all data was gone but telnet remained opened (even old session remained online).
I have then recreated post_init.sh and installed mosquito using a snippet from README.md.

The only problem is that /data/miio folder is now gone which contained the file with the token. However, somehow integration automatically discovered the hub and added it without token.
I have verified that sensors work in HA as expected.

miio token is useless in Aqara home mode. You can ignore it in Aqara Home mode.

It is great that this component is helped to you.

@shift-del1

I would like to test the solution with M1S EU, but have no experience with Linux. Can any of you please create something similar on the readme page for manual telnet etc. I can copy into telnet and run? My goal would be:

  1. put M1S EU into Mi Home mode
  2. add it to the integration to gain access to telnet
  3. run specific commands to retain telnet (this is where I need your help)
  4. switch to Aqara Home mode
  5. have Aqara Home and Home Assistant access parallel
    Thank you.

@chaplyk

@shift-del1 once EU hub is added to your Mi account:

Obtain info about gateway:
bash <(curl -L https://github.com/PiotrMachowski/Xiaomi-cloud-tokens-extractor/raw/master/run.sh)

Enable telnet:
pip3 install python-miio
miiocli device --ip <gateway_id> --token <gateway_token> raw_command set_ip_info '{"ssid":"\"\"","pswd":"123123 ; passwd -d admin ; echo enable > /sys/class/tty/tty/enable; telnetd"}'
Replace <gateway_ip> and <gateway_token> with info received from the first command. Nothing else has to be changed.

Telnet to hub using username admin:
telnet <gateway_ip>

Create a script with any name (f.e. enable_telnet.sh) and paste the following code (can use vi to create script):

#!/bin/sh

CUSTOM_POST_INIT=/data/scripts/post_init.sh
watching_post_init() {
    if [ ! -x ${CUSTOM_POST_INIT} ]; then
        mkdir -p /data/scripts/
        echo -e '#!/bin/sh\r\n\r\nfw_manager.sh -r\r\necho enable > /sys/class/tty/tty/enable\r\ntelnetd' > ${CUSTOM_POST_INIT}
        chmod a+x ${CUSTOM_POST_INIT}
    fi
}


main() {
    while [ 1 ]; do sleep 1; watching_post_init; done
}

main

Then run the script:
sh enable_telnet.sh

With a script running switch hub to Aqara mode (press 10 + 2 times on hub) and add it to Aqara Home app.
Telnet connection should remain active. Stop the script with Ctrl+C.

Perform steps from readme to enable integration:

cd /data/bin
wget -O /data/bin/curl "http://master.dl.sourceforge.net/project/mgl03/bin/curl?viasf=1"
chmod +x /data/bin/curl
/data/bin/curl -s -k -L -o /data/bin/mosquitto https://raw.githubusercontent.com/niceboygithub/AqaraM1SM2fw/main/binutils/mosquitto
chmod a+x /data/bin/mosquitto

mkdir /data/scripts
cd /data/scripts
/data/bin/curl -s -k -L -o /data/scripts/post_init.sh https://raw.githubusercontent.com/niceboygithub/AqaraM1SM2fw/main/binutils/post_init.sh
chmod +x /data/scripts/post_init.sh

reboot

@shift-del1

Thank you chaplyk, I really appreciate your detailed description. Currently I’m away from the hub, but once I get home, I will give it a try. Some part was already done (like token retrieval and telnet enabled), but your instructions are vital for the complete success 😊

@shift-del1

Hello chaplyk,

Everything went fine until the last step, where I should have enable the integration (so telnet was runing after switched to Aqara home app). I copied the script with the embedded button in the top right corner and pasted in the telnet window, device rebooted and not able to start up anymore. Any idea what could go wrong (I guess the post_init.sh) and how to fix it? No action after holding the button for 10s or pressing it 10 times. Thanks in advance.

@binakot

The same situation.

I just bought Aqara Hub M1S EU / HM1S-G01 / lumi.gateway.aeu01.

On the first run I switched from Aqara Home app to MiHome app via 10-times button press for reset and 2-times press after reset to switch in MiHome mode.
After I connect hub to MiHome patched by Vevs in region China Mainland.
And I update firmware to the latest 3.1.5_0020.
Everything works like a charm.

Than I collect device token by next commands (values are faked):

$ bash <(curl -L https://github.com/PiotrMachowski/Xiaomi-cloud-tokens-extractor/raw/master/run.sh)

NAME: Aqara Hub M1S
ID: 123456
IP: 192.168.0.123
TOKEN: qwe123
MODEL: lumi.gateway.aeu01

After I enable telnet with commands:

$ sudo pip3 install python-miio 
$ miiocli device --ip 192.168.0.123 --token qwe123 raw_command set_ip_info '{"ssid":"\"\"","pswd":"123123 ; passwd -d admin ; echo enable > /sys/class/tty/tty/enable; telnetd"}'
$ telnet 192.168.0.123 
> login: admin

Aqara-Hub-M1S-9512 login: admin
RLX Linux version 3.0
         _           _  _
        | |         | ||_|                 
   _  _ | | _  _    | | _ ____  _   _  _  _ 
  | |/ || |\ \/ /   | || |  _ \| | | |\ \/ /
  | |_/ | |/    \   | || | | | | |_| |/    \
  |_|   |_|\_/\_/   |_||_|_| |_|\____|\_/\_/

For further information check:
http://processor.realtek.com/


BusyBox v1.22.1 (2021-09-01 19:43:53 CST) built-in shell (ash)
Enter 'help' for a list of built-in commands.
#

I tried Flash M1S Custom firmware method but it is not supported for EU hubs:

$ cd /tmp && wget -O /tmp/curl "http://master.dl.sourceforge.net/project/mgl03/bin/curl?viasf=1" && chmod a+x /tmp/curl
/tmp/curl -s -k -L -o /tmp/m1s_update.sh 
$ https://raw.githubusercontent.com/niceboygithub/AqaraM1SM2fw/main/modified/M1S/m1s_update.sh
$ chmod a+x /tmp/m1s_update.sh && /tmp/m1s_update.sh
m1s_update.sh revision: 2
type: lumi.gateway.aeu01, model: AH_M1S
This is not supported M1S and exit!

Via telnet I applied Not Flash Custom firmware method:

$ mkdir /data/bin
$ cd /data/bin
$ wget -O /data/bin/curl "http://master.dl.sourceforge.net/project/mgl03/bin/curl?viasf=1"
$ chmod +x /data/bin/curl
$ /data/bin/curl -s -k -L -o /data/bin/mosquitto 
$ https://raw.githubusercontent.com/niceboygithub/AqaraM1SM2fw/main/binutils/mosquitto
$ chmod a+x /data/bin/mosquitto

$ mkdir /data/scripts
$ cd /data/scripts
$ /data/bin/curl -s -k -L -o /data/scripts/post_init.sh 
$ https://raw.githubusercontent.com/niceboygithub/AqaraM1SM2fw/main/binutils/post_init.sh
$ chmod +x /data/scripts/post_init.sh

$ reboot

After reboot MiHome works with Aqara Hub M1S and device is still available via telnet.

But I got Aborted message in Home Assistant on every try to integrate Aqara Hub

image

image

@binakot

Trying to uncomment row like here: #29 (comment)

'lumi.gateway.aeu01': ["Aqara", "Gateway M1S", "HM1S-G01"],

@binakot

And it works ;)

image

@kizimenko

You are a magician.

I have launched the code above (sent main() to background) and reset the hub to Aqara mode. After reset all data was gone but telnet remained opened (even old session remained online). I have then recreated post_init.sh and installed mosquito using a snippet from README.md.

The only problem is that /data/miio folder is now gone which contained the file with the token. However, somehow integration automatically discovered the hub and added it without token. I have verified that sensors work in HA as expected.

What you have in HA from zigbee n100? can u add some pictures?

@kalbfuss

Trying to uncomment row like here: #29 (comment)

'lumi.gateway.aeu01': ["Aqara", "Gateway M1S", "HM1S-G01"],

I have the same model (aeu01) and can confirm that connecting to the gateway works after uncommenting the beforementioned line. Will now start to test and report back any issues/successes.

@lonsdaleite

I can also confirm that lumi.gateway.aeu01 works without any issues after modifying 3 rows in utils.py.

@sorryusernameisalreadytaken

I have uncommented line 35 'lumi.gateway.aeu01': ["Aqara", "Gateway M1S", "HM1S-G01"], and installed integration.
HA works OK with my Aqara sensors added in Mi Home.
However, I have a Aqara N100 lock which cannot be added in Mi Home (Zigbee version supports Aqara Home app only). Since there is no custom firmware for EU version in your repo, can you suggest how I can switch from Mi Home mode to Aqara? (soft reset on device disables telnetd)

I have an idea. but I did not verity it yet. You can have a try While M1S switch to Aqara Home, M1S do not do reboot. So there is a chance to write «post_init.sh». With «post_init.sh», it can enable telnet.

  1. telnet to M1S
  2. run script like the following code
#!/bin/sh

CUSTOM_POST_INIT=/data/scripts/post_init.sh
watching_post_init() {
    if [ ! -x ${CUSTOM_POST_INIT} ]; then
        mkdir -p /data/scripts/
        echo -e '#!/bin/sh\r\n\r\nfw_manager.sh -r\r\necho enable > /sys/class/tty/tty/enable\r\ntelnetd' > ${CUSTOM_POST_INIT}
        chmod a+x ${CUSTOM_POST_INIT}
    fi
}


main() {
    while [ 1 ]; do sleep 1; watching_post_init; done
}

main
  1. switch to Aqara Home mode (press 10 times of button and 2 times of button)
  2. verity: telnet to M1S and and check the «post_init.sh» is exist.

I try this now 2 times. What a process :D

what I would like to achieve:

  • add lumi.gateway.aeu01 to homeassistant
  • in aqara-mode
  • with cn aqara-country so that I can add the FP1 sensors.

I managed to get telnet to survive the change from xioami-mode to aqara-mode but when I followed the instructions «Not Flash modified firmware method (NOT for G2H, E1 hub, G3)» telnet did not survive the reboot.

At the second attempt, I tried to skip the reboot to have a tethered hack, but the device simply hung up after I following the instructions «Not Flash modified firmware method (NOT for G2H, E1 hub, G3)».

EDIT:
I did a third try. In the moment when the init script it freezed.
Here is the output:

fw_manager.sh revision: 2
pre-revision: 0
remove /data/lumi_fw
hostname: Aqara-Hub-M1S-3584
type: lumi.gateway.aeu01, model: AH_M1S
Platform: aiot
run aiot.
a:0, r:0
Failed to read serial number

Homey Community Forum

Loading

Что делать, если концентратор M1S не может быть добавлен?

1. Прежде чем добавить концентратор M1S убедитесь, что мобильный телефон подключен к сети Wi-Fi 2,4 ГГц, и держите мобильный телефон как можно ближе к устройству.
2. Если не удается добавить устройство или сеть не подключена более 15 минут после запуска, нажмите и удерживайте кнопку устройства более 10 секунд, пока не замигает желтый индикатор, после чего добавьте устройство еще раз.
3. Когда Вы услышите голосовую подсказку «Ожидание подключения. Откройте приложение Aqara Home», Вы можете использовать Aqara Home для добавления устройства.
4. Если устройство по-прежнему не удается добавить, выключите его, затем включите и попробуйте добавить снова. Также Вы можете нажать эту кнопку десять раз для восстановления заводских настроек и повторить попытку. Обратите внимание, что восстановление заводских настроек приведет к удалению всех данных об использовании, включая информацию о добавленных суб-устройствах.

Где установить концентратор?

1. Концентратор должен быть подключен к розетке.
2. Для обеспечения стабильного соединения с аксессуарами рекомендуется устанавливать концентратор в центре.
3. Избегайте металлических препятствий и несущих стен между концентратором и его аксессуарами, а также между концентратором и роутером.

Могу ли я связать концентратор с моим приложением напрямую без подключения к Wi-Fi?

Нет, убедитесь, что Ваш телефон подключен к Wi-Fi, а затем подключитесь к концентратору через приложение.

Что произойдет при нажатии кнопки концентратора?

Когда концентратор подает сигнал тревоги, данная операция может прекратить сигнал тревоги; когда концентратор проигрывает рингтон, данная операция может остановить воспроизведение; кроме того, эта операция может включать/выключать ночное освещение.

Как добавить в концентратор аксессуары Zigbee?

1. Аксессуары Zigbee могут быть подключены к приложению Aqara Home только через концентратор. Выберите концентратор для сопряжения при подключении к приложению Aqara Home.
2. Если Вы хотите подключить аксессуар Zigbee к другому концентратору, сначала удалите его с домашней страницы в приложении Aqara Home. Затем добавьте его снова и выберите концентратор, с которым хотите выполнить сопряжение.
3. Вы можете просмотреть список аксессуаров, сопряженных с концентратором, в плагине концентратора.

Сколько аксессуаров Zigbee может быть сопряжено с концентратором?

1. Этот концентратор поддерживает до 32 оконечных устройств Zigbee.
2. Если Вы хотите добавить больше оконечных устройств Zigbee, Вы можете сначала добавить роутер Zigbee к концентратору, а затем добавить другие оконечные устройства Zigbee. Роутер Zigbee имеет расширенный функционал. После расширения концентратор может поддерживать до 128 аксессуаров Zigbee.
3. Среди продуктов Zigbee брендов Aqara и Mijia продукт, питаемый от нейтрального провода и проводов под напряжением, является роутером, а продукт, питаемый от провода под напряжением или от аккумулятора, является оконечным устройством. Каждый роутер может быть расширен для поддержки 16 конечных устройств.

Какое максимальное расстояние между аксессуаром и концентратором, и проходит ли сигнал сквозь стены?

Диапазон эффективного расстояния между аксессуаром и концентратором варьируется в зависимости от реальных условий в помещении. Для бытового использования расстояние между аксессуаром и концентратором должно составлять не более 20 метров и между ними не должно находиться более двух стен.

Как проверить, подходит ли место для установки аксессуара Zigbee?

После успешного подключения аксессуара Zigbee попробуйте запустить аксессуар перед его установкой, чтобы посмотреть, обновлен ли статус аксессуара в приложении. В противном случае, обратитесь к методу проверки связи между аксессуаром и концентратором (нажмите кнопку сброса для большинства аксессуаров). Концентратор издаст два звуковых сигнала, указывающие на то, что аксессуар находится в пределах эффективного диапазона.

Почему аксессуар иногда отключается

1. Он может быть расположен слишком далеко от концентратора или между ними могут находиться металлические препятствия. Попробуйте переместить аксессуар ближе к концентратору.
2. Возможно, аккумулятор разряжен, и его необходимо заменить.
Примечание. Для достижения оптимальной работы своевременно обновляйте прошивку концентратора, чтобы обеспечить совместимость и стабильную связь между устройствами.

Как определить разные аксессуары одного типа, сопряженные с одним и тем же концентратором

Для определения различных устройств Вы можете просматривать журналы устройств. При добавлении устройств рекомендуется классифицировать устройства по месту их установки или предполагаемому использованию и переименовать их через приложение.

Почему я не могу управлять концентратором и его аксессуарами дистанционно после доступа к HomeKit

После добавления концентратора в приложение Apple Home Вам также необходимо настроить HomePod, Apple TV (tvOS 11.0 или выше) или iPad (iOS 12.0 или выше) для дистанционного управления концентратором. Для получения информации о конкретных операциях обратитесь к уведомлениям приложения Apple Home.

Почему я не могу найти некоторые аксессуары в приложении Apple Home

Когда концентратор добавлен в приложение Apple Home, в приложении Apple Home отображаются только аксессуары с поддержкой HomeKit. Устройства без авторизации «Работает с Apple HomeKit» не могут получить доступ к HomeKit.

Как настроить сцены автоматизации?

На главной странице приложения нажмите «Автоматизация», затем нажмите «+» в правом верхнем углу страницы, затем добавьте триггерное устройство и условия в «ЕСЛИ», а затем добавьте исполнительное устройство и результат выполнения в «ТО». Сцена представляет собой набор нескольких автоматизаций, который также может использоваться как результат автоматизации.
Например, Вам необходимо настроить датчик движения таким образом, чтобы свет включался при обнаружении кого-то: нажмите «+» в правом верхнем углу страницы автоматизации, выберите датчик движения в «ЕСЛИ»> кто-то движется, и выберите свет в «ТО»> включить. После этого настройка автоматизации будет завершена.

Почему когда концентратор отключен от сети, некоторые умные сценарии по-прежнему могут выполняться, а некоторые нет?

1. В соответствии с характеристиками автоматизации методы выполнения делятся на облачный и локальный. Это можно увидеть в Автоматизация> Дополнительные настройки (три точки в верхнем правом углу)> Метод выполнения.
2. Облачное выполнение автоматизации должно опираться на сеть для загрузки сигнала, воспринимаемого устройством запуска, в облако, а затем облако отправляет соответствующую команду управления на исполнительное устройство. Таким образом, после отключения концентратора от сети автоматизация не может быть выполнена.
3. При локальном выполнении автоматизации триггерное устройство отправляет полученный сигнал на концентратор, а концентратор отправляет соответствующую команду управления на исполнительное устройство через Zigbee или LAN. Таким образом, даже если роутер не может подключиться к внешней сети, пока соединение между концентратором и исполнительным устройством находится в норме, автоматизация по-прежнему будет выполняться.

Шлюз Xiaomi Aqara Hub M1S не подключается в MI Home - решение проблемы фото

Если в процессе подключения шлюза Aqara M1S в приложение Xiaomi Mi Home появляется ошибка «Время подключения к сети истекло» и предлагает поднести телефон ближе к маршрутизатору.

В этом случае необходимо переключить режим работы шлюза, для чего его надо сбросить (10 раз нажать кнопку) и в момент включения еще 2 раза нажать кнопку.

Может предварительно потребоваться обновление прошивки устройства, для этого предварительно придется добавить в Aqara Home и уже там обновиться.

Купить устройство:

#Xiaomi #Aqara

Категории: Технологии
Теги: aqara, xiaomi, home, шлюз, подключения, прерительно, шлюза, нажать, проблемы, решение, подключается

Если в процессе подключения шлюза Aqara M1S в приложение Xiaomi Mi Home появляется ошибка «Время подключения к сети истекло» и предлагает поднести телефон ближе к маршрутизатору.
В этом случае необходимо переключить режим работы шлюза, для чего его надо сбросить (10 раз нажать кнопку) и в момент включения еще 2 раза нажать кнопку.
Может предварительно потребоваться обновление прошивки устройства, для этого предварительно придется добавить в Aqara Home и уже там обновиться.
Купить устройство: 🤍xiaomi-smarthome.ru/product/aqara-hub-m1s/
#Xiaomi #Aqara

Aleksandr Sichenikov

2023-09-08 16:58:24

не получается, буду мучатся

Альберт

2023-09-08 11:40:08

Спасибо Вам большое добрый человек

SHYHRAT IKROMOV

2023-08-31 15:54:51

У меня не подключался куб акара к Хабу Xiaomi Gateway 3. Нахожу куб в списке, выбираю Хаб, зажимаю кнопку соединения, идёт отсчёт (60 секунды) и на этом всё, ничего не находит. Удалял и переустанавливал приложение, прошивка Хаба последняя, ничего не помогло… но
Во время очередной попытки (отсчёт 60 секунд) начал нажимать на кнопку соединения, 1 раз в секунду, на 2-3 секунду соединился.
Возможно ком-то поможет такой метод.

А что делать если хаб работал года полтора, а теперь когда включаешь то горит непрерывно желтоватый цвет секунд 20, потом тухнет и ни на какие перезагрузки реакции нет?

Alexander Zhimalov

2023-08-07 14:15:53

Пытаюсь так же переключить aqara ac advanced — не работает. Зажимай 10с, кликай 10 раз, жми два раза при включении — ничего. Не переключает на mi home абсолютно никак. Ничего не сбрасывается. В акара приложении работает, в сяоми — нет. Хотя до этого год работал в сяоми без проблем, потом просто перестал и все. Не знаю куда дальше искать. У кого есть идеи — подскажите, пожалуйста.

Раис Ибятов

2023-07-27 12:49:50

Спасибо тебе добрый человек!

Кондрашов Олег

2023-07-06 20:56:49

Очень выручил, спасибо за труд)))

Mr.Timskey

2023-05-03 09:15:17

От души тебе друг! Спасибо большое!

RusLAN

2023-04-22 16:33:54

Спасибо, добрый человек!

Валентин Гребенцов

2023-04-20 22:19:26

У меня шторы подключены а я не достану установить все заново, там на электро карнизы жать надо, и че так постоянно будет вылетать?

AlDeman

2023-04-04 12:02:02

Уже трижды повторил процедуру и не переключается режим 🤷🏾‍♂️

Maksim Leschev

2023-04-04 11:02:16

Автор, спасибо огромное!

annik4rever

2023-02-21 21:11:21

Спасибо! Подключилось 🎉

Добрый день, не сталкивались с такой проблемой. При подключении купленного устройства горит желтый цвет и через 50 секунд моргает и дальше горит на сброс ни как не реагирует, не зажатием не нажатием от слова совсем. До подключения даже не дошло.

Maxim Makhovsky

2023-02-17 15:20:38

Дорогой автор! Пожалуйста, добавьте в ролик сноску и в описании к видео тоже оставьте пометку, что со второй версией (Gen 2 которая) этот способ не работает, к сожалению. Спасибо!

All inclusive

2023-02-09 15:58:32

А что делать если пишет не удалось отправить сообщение на мод версии ми Хом?

Igor Narni

2023-02-04 09:35:44

так, может кто поможет ios 16.0 aqara hub m1s gen 2 прошивка 3.5.0_0013.004 в приложени aqara находит в умном доме находит, но в mi home V7.12.203 видит устовливает дальше в устройствах его нет.регион Россия везде. пробывал китай тоже нет.

Тёма и Настя

2022-12-29 09:05:54

Кто-нибудь сталкивался с проблемой отваливания от сети? Новый хаб, отваливается от сети постоянно и моргает синим. Не знаю что с этим делать.

Иван Леснов

2022-12-28 19:50:59

К MiHome теперь не добавляется, хочет только в apple home добавляться

Понравилась статья? Поделить с друзьями:
  • Aqsi ошибка 101
  • Aqsi код ошибки 1002
  • Aqsi касса не фискализирована ошибка
  • Apt исправить ошибки
  • Aqsf 105 коды ошибок