У нас вы можете посмотреть бесплатно The END of Coding? 😱 Building a Smart Home with ESP Zero Code | Alexa | Siri | ESP32 или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video, I show you how to build a super easy 4-Channel Smart Switch using the ESP32 and the ESP Zero Code platform. The best part? You don't need to write a single line of code! We are using the "Text Mode" feature to simply copy-paste our configuration. This device uses the Matter protocol, meaning it works natively with Apple HomeKit (Siri), Amazon Alexa, Google Home, and Samsung SmartThings. Note : Apple Home and ESP rainmaker doest need a extra hub. ⏱️ Timestamps: 0:00 - Intro & Demo (Siri & Alexa Control) 0:32 - Hardware Used & Circuit Diagram 1:13 - Wiring Connections 2:26 - ESPzerocode intro and setup 4:13 - Text mode explain 7:33 - Generating the Firmware and Flashing in ESP32 9:27 - Pairing with Apple Home 10:14 - Testing with Apple Home 11:20 - Paring with Alexa 14:09 - Testing with Alexa 14:38 - Conclusion Hardware Used: Microcontroller: ESP32 dev module Relay Module: 4-Channel Relay Module (Active Low) Input: 4x Push Buttons (Active Low) Status Indicator: WS2812b LED (Neopixel) Power Supply: 5V USB Wiring Connections: Input (Push Buttons): Button 1: GPIO 33 (Connect to GND) Button 2: GPIO 25 (Connect to GND) Button 3: GPIO 26 (Connect to GND) Button 4: GPIO 27 (Connect to GND) Output (Relays): Relay 1: GPIO 22 Relay 2: GPIO 21 Relay 3: GPIO 19 Relay 4: GPIO 18 Status LED: Data Pin: GPIO 32 JSON Configuration Code: (If your using Low logic relay module means - Copy the code below and paste it into the "Text Mode" editor on the ESP Zero Code website) JSON { "config_version": 3, "driver": [ { "id": 1000, "type": "ezc.driver.button", "name": "gpio", "gpio_config": { "gpio_num": 33, "active_level": 0, "long_press_time": 5 } }, { "id": 1001, "type": "ezc.driver.button", "name": "gpio", "gpio_config": { "gpio_num": 25, "active_level": 0, "long_press_time": 5 } }, { "id": 1002, "type": "ezc.driver.button", "name": "gpio", "gpio_config": { "gpio_num": 26, "active_level": 0, "long_press_time": 5 } }, { "id": 1003, "type": "ezc.driver.button", "name": "gpio", "gpio_config": { "gpio_num": 27, "active_level": 0, "long_press_time": 5 } }, { "id": 1004, "type": "ezc.driver.relay", "name": "gpio", "gpio_config": { "gpio_num": 22, "active_level": 0 } }, { "id": 1005, "type": "ezc.driver.relay", "name": "gpio", "gpio_config": { "gpio_num": 21, "active_level": 0 } }, { "id": 1006, "type": "ezc.driver.relay", "name": "gpio", "gpio_config": { "gpio_num": 19, "active_level": 0 } }, { "id": 1007, "type": "ezc.driver.relay", "name": "gpio", "gpio_config": { "gpio_num": 18, "active_level": 0 } }, { "id": 1008, "type": "ezc.driver.led", "name": "ws2812", "lighting_config": { "enable_gradient": true, "beads_comb": 4, "fades_ms": 800 }, "ws2812_config": { "led_num": 1, "ctrl_io": 32 }, "hardware_config": { "white_max": 100, "rgb_max": 100 }, "gamma_config": { "enable_gamma_adjust": true } } ], "product_common": [ { "type": "ezc.product_common.indicator", "subtype": 0, "driver": { "output": 1008 }, "events": [ { "name": "setup_mode_start", "mode": "breathe", "speed": 2000, "color_select": 1, "r": 0, "g": 255, "b": 0 }, { "name": "setup_successful", "mode": "blink", "speed": 200, "color_select": 1, "r": 0, "g": 255, "b": 0, "total_ms": 500 }, { "name": "setup_failed", "mode": "solid", "color_select": 1, "r": 255, "g": 0, "b": 0 } ] }, { "type": "ezc.product_common.factory_reset", "subtype": 2, "driver": { "input": 1000 }, "auto_trigger": true } ], "product": [ { "type": "ezc.product.socket", "subtype": 1, "driver": { "input": 1000, "output": 1004 }, "data_model": { "power_default": 1, "power_bootup": -1 } }, { "type": "ezc.product.socket", "subtype": 1, "driver": { "input": 1001, "output": 1005 }, "data_model": { "power_default": 1, "power_bootup": -1 } }, { "type": "ezc.product.socket", "subtype": 1, "driver": { "input": 1002, "output": 1006 }, "data_model": { "power_default": 1, "power_bootup": -1 } }, { "type": "ezc.product.socket", "subtype": 1, "driver": { "input": 1003, "output": 1007 }, "data_model": { "power_default": 1, "power_bootup": -1 } } ], "test_mode": [ { "type": "ezc.test_mode.common", "subtype": 1 }, { "type": "ezc.test_mode.ble", "subtype": 1 }, { "type": "ezc.test_mode.socket", "subtype": 1 } ] } Code: https://github.com/Sarwesvaran/ESP32-... Follow Me Instagram: / sarvs.electric Telegram: https://t.me/sarvselectric_official #esp32 #matter #smarthome #nocode #diyelectronics #homeautomation #techtutorial #espzerocode #iot #siri #alexa #googlehome #electronics #smarthomeautomation #sarvselectric #nocode #arduinoproject