<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Smart Home Automation Forum - KC868-E8T]]></title>
		<link>https://www.kincony.com/forum/</link>
		<description><![CDATA[Smart Home Automation Forum - https://www.kincony.com/forum]]></description>
		<pubDate>Tue, 14 Apr 2026 11:37:05 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[ERROR SIM not inserted SIM7600E]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=9045</link>
			<pubDate>Wed, 11 Feb 2026 23:23:33 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=10411">Aris</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=9045</guid>
			<description><![CDATA[Hi I am from the Philippines, I have purchased the SIM7600E 4G+GPS module and I am having some trouble with the module because it is stuck with the LED being turned on. I am using a sim card that is 5G with 4G fallback since as of the moment I don't have any access to a old 4G sim card.<br />
<br />
I have watched the Kincony youtube video on how to properly insert the sim card and also installed all the necessary drivers needed for the uart tool. How do I fix this? <img src="https://www.kincony.com/forum/images/smilies/sad.png" alt="Sad" title="Sad" class="smilie smilie_8" />]]></description>
			<content:encoded><![CDATA[Hi I am from the Philippines, I have purchased the SIM7600E 4G+GPS module and I am having some trouble with the module because it is stuck with the LED being turned on. I am using a sim card that is 5G with 4G fallback since as of the moment I don't have any access to a old 4G sim card.<br />
<br />
I have watched the Kincony youtube video on how to properly insert the sim card and also installed all the necessary drivers needed for the uart tool. How do I fix this? <img src="https://www.kincony.com/forum/images/smilies/sad.png" alt="Sad" title="Sad" class="smilie smilie_8" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-E8T added Tuya module yaml file for ESPHome]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=5848</link>
			<pubDate>Wed, 05 Jun 2024 12:32:15 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=5848</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>esphome:<br />
  name: e8t-tuya<br />
  friendly_name: e8t-tuya<br />
  platformio_options:<br />
    board_build.extra_flags:<br />
      # WIFI_CONTROL_SELF_MODE = 0<br />
      # WIFI_CONTROL_SELF_MODE = 1<br />
      - "-DWIFI_CONTROL_SELF_MODE=1"<br />
  platform: ESP32<br />
  board: esp32dev<br />
  on_boot:  #Power chip BL0939 initialization<br />
    priority: 600<br />
    then:<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x42, 0x00, 0x00, 0xDF]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x38, 0x3C, 0x00, 0x00, 0xE6]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x42, 0x00, 0x00, 0xDF]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x3A, 0x01, 0x00, 0x00, 0x1F]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x00, 0x00, 0x00, 0x21]<br />
<br />
external_components:<br />
  - source:<br />
      type: git<br />
      url: https://github.com/hzkincony/esphome-tuya-wifi-mcu<br />
      ref: v1.1.0<br />
<br />
uart:<br />
  - id: uart_1<br />
    tx_pin: GPIO12<br />
    rx_pin: GPIO39<br />
    baud_rate: 4800<br />
    parity: NONE<br />
    stop_bits: 2    <br />
  <br />
  # - id: uart_2<br />
  # &nbsp;&nbsp;tx_pin: GPIO33<br />
  # &nbsp;&nbsp;rx_pin: GPIO36<br />
  # &nbsp;&nbsp;baud_rate: 4800<br />
  # &nbsp;&nbsp;parity: NONE<br />
  # &nbsp;&nbsp;stop_bits: 2  <br />
<br />
  - id: tuya_mcu_uart<br />
    tx_pin: GPIO13<br />
    rx_pin: GPIO16<br />
    baud_rate: 9600<br />
<br />
tuya_wifi_mcu:<br />
  # tuya mcu product id<br />
  product_id: d8vwzka9smrcjznp<br />
  uart_id: tuya_mcu_uart<br />
  wifi_reset_pin: 28<br />
  wifi_led_pin: 16<br />
<br />
<br />
# Enable logging<br />
logger:<br />
  # baud_rate: 0<br />
<br />
# Enable Home Assistant API<br />
api:<br />
<br />
ota:<br />
  password: "d83d604e4f0ae287fb041dbaf31524d9"<br />
<br />
<br />
# Example configuration entry<br />
ethernet:<br />
  type: LAN8720<br />
  mdc_pin: GPIO23<br />
  mdio_pin: GPIO18<br />
  clk_mode: GPIO17_OUT<br />
  phy_addr: 0<br />
  <br />
<br />
<br />
sensor:<br />
  - platform: bl0939<br />
    uart_id: uart_1<br />
    update_interval: 10s<br />
    voltage:<br />
      name: 'BL0939A Voltage'<br />
    current_1:<br />
      name: 'BL0939A Current 1'<br />
    current_2:<br />
      name: 'BL0939A Current 2'<br />
    active_power_1:<br />
      name: 'BL0939A Active Power 1'<br />
    active_power_2:<br />
      name: 'BL0939A Active Power 2'<br />
    energy_1:<br />
      name: 'BL0939A Energy 1'<br />
    energy_2:<br />
      name: 'BL0939A Energy 2'<br />
    energy_total:<br />
      name: 'BL0939A Energy Total'<br />
      <br />
      <br />
      <br />
  # - platform: bl0939<br />
  # &nbsp;&nbsp;uart_id: uart_2<br />
  # &nbsp;&nbsp;update_interval: 10s<br />
  # &nbsp;&nbsp;voltage:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Voltage'<br />
  # &nbsp;&nbsp;current_1:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Current 1'<br />
  # &nbsp;&nbsp;current_2:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Current 2'<br />
  # &nbsp;&nbsp;active_power_1:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Active Power 1'<br />
  # &nbsp;&nbsp;active_power_2:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Active Power 2'<br />
  # &nbsp;&nbsp;energy_1:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Energy 1'<br />
  # &nbsp;&nbsp;energy_2:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Energy 2'<br />
  # &nbsp;&nbsp;energy_total:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Energy Total'<br />
      <br />
<br />
# Example configuration entry for ESP32<br />
i2c:<br />
  sda: 4<br />
  scl: 5<br />
  scan: true<br />
  id: bus_a<br />
  <br />
pcf8574:<br />
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8<br />
    address: 0x24<br />
<br />
  - id: 'pcf8574_hub_in_1'  # for input channel 1-8<br />
    address: 0x22<br />
<br />
    <br />
# Individual outputs<br />
switch:<br />
  - platform: gpio<br />
    name: "e8t_output1"<br />
    id: "e8t_output1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output1-tuya<br />
    dp_id: 1<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output1"<br />
<br />
<br />
  - platform: gpio<br />
    name: "e8t_output2"<br />
    id: "e8t_output2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output2-tuya<br />
    dp_id: 2<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output2"<br />
      <br />
  - platform: gpio<br />
    name: "e8t_output3"<br />
    id: "e8t_output3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output3-tuya<br />
    dp_id: 3<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output3"<br />
      <br />
  - platform: gpio<br />
    name: "e8t_output4"<br />
    id: "e8t_output4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output4-tuya<br />
    dp_id: 4<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output4"<br />
      <br />
  - platform: gpio<br />
    name: "e8t_output5"<br />
    id: "e8t_output5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output5-tuya<br />
    dp_id: 5<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output5"<br />
      <br />
  - platform: gpio<br />
    name: "e8t_output6"<br />
    id: "e8t_output6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output6-tuya<br />
    dp_id: 6<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output6"<br />
<br />
  - platform: gpio<br />
    name: "e8t_output7"<br />
    id: "e8t_output7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output7-tuya<br />
    dp_id: 123<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output7"<br />
      <br />
  - platform: gpio<br />
    name: "e8t_output8"<br />
    id: "e8t_output8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 7<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output8-tuya<br />
    dp_id: 124<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output8"<br />
<br />
binary_sensor:<br />
  - platform: gpio<br />
    name: "e8t_input1"<br />
    id: "e8t_input1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input1 Tuya<br />
    dp_id: 122<br />
    bind_binary_sensor_id: e8t_input1<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input2"<br />
    id: "e8t_input2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input2 Tuya<br />
    dp_id: 121<br />
    bind_binary_sensor_id: e8t_input2<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input3"<br />
    id: "e8t_input3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input3 Tuya<br />
    dp_id: 120<br />
    bind_binary_sensor_id: e8t_input3<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input4"<br />
    id: "e8t_input4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input4 Tuya<br />
    dp_id: 119<br />
    bind_binary_sensor_id: e8t_input4<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input5"<br />
    id: "e8t_input5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input5 Tuya<br />
    dp_id: 118<br />
    bind_binary_sensor_id: e8t_input5<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input6"<br />
    id: "e8t_input6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input6 Tuya<br />
    dp_id: 117<br />
    bind_binary_sensor_id: e8t_input6<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input7"<br />
    id: "e8t_input7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input7 Tuya<br />
    dp_id: 116<br />
    bind_binary_sensor_id: e8t_input7<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input8"<br />
    id: "e8t_input8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input8 Tuya<br />
    dp_id: 115<br />
    bind_binary_sensor_id: e8t_input8<br />
    internal: true<br />
<br />
web_server:<br />
  port: 80</code></div></div><br />
download yaml file: <!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=5344" target="_blank" title="">KC868-E8T-HA-Tuya.txt</a> (Size: 8.39 KB / Downloads: 389)
<!-- end: postbit_attachments_attachment --><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=5345" target="_blank" title="">e8t-tuya.png</a> (Size: 160.41 KB / Downloads: 529)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>esphome:<br />
  name: e8t-tuya<br />
  friendly_name: e8t-tuya<br />
  platformio_options:<br />
    board_build.extra_flags:<br />
      # WIFI_CONTROL_SELF_MODE = 0<br />
      # WIFI_CONTROL_SELF_MODE = 1<br />
      - "-DWIFI_CONTROL_SELF_MODE=1"<br />
  platform: ESP32<br />
  board: esp32dev<br />
  on_boot:  #Power chip BL0939 initialization<br />
    priority: 600<br />
    then:<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x42, 0x00, 0x00, 0xDF]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x38, 0x3C, 0x00, 0x00, 0xE6]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x42, 0x00, 0x00, 0xDF]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x3A, 0x01, 0x00, 0x00, 0x1F]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x00, 0x00, 0x00, 0x21]<br />
<br />
external_components:<br />
  - source:<br />
      type: git<br />
      url: https://github.com/hzkincony/esphome-tuya-wifi-mcu<br />
      ref: v1.1.0<br />
<br />
uart:<br />
  - id: uart_1<br />
    tx_pin: GPIO12<br />
    rx_pin: GPIO39<br />
    baud_rate: 4800<br />
    parity: NONE<br />
    stop_bits: 2    <br />
  <br />
  # - id: uart_2<br />
  # &nbsp;&nbsp;tx_pin: GPIO33<br />
  # &nbsp;&nbsp;rx_pin: GPIO36<br />
  # &nbsp;&nbsp;baud_rate: 4800<br />
  # &nbsp;&nbsp;parity: NONE<br />
  # &nbsp;&nbsp;stop_bits: 2  <br />
<br />
  - id: tuya_mcu_uart<br />
    tx_pin: GPIO13<br />
    rx_pin: GPIO16<br />
    baud_rate: 9600<br />
<br />
tuya_wifi_mcu:<br />
  # tuya mcu product id<br />
  product_id: d8vwzka9smrcjznp<br />
  uart_id: tuya_mcu_uart<br />
  wifi_reset_pin: 28<br />
  wifi_led_pin: 16<br />
<br />
<br />
# Enable logging<br />
logger:<br />
  # baud_rate: 0<br />
<br />
# Enable Home Assistant API<br />
api:<br />
<br />
ota:<br />
  password: "d83d604e4f0ae287fb041dbaf31524d9"<br />
<br />
<br />
# Example configuration entry<br />
ethernet:<br />
  type: LAN8720<br />
  mdc_pin: GPIO23<br />
  mdio_pin: GPIO18<br />
  clk_mode: GPIO17_OUT<br />
  phy_addr: 0<br />
  <br />
<br />
<br />
sensor:<br />
  - platform: bl0939<br />
    uart_id: uart_1<br />
    update_interval: 10s<br />
    voltage:<br />
      name: 'BL0939A Voltage'<br />
    current_1:<br />
      name: 'BL0939A Current 1'<br />
    current_2:<br />
      name: 'BL0939A Current 2'<br />
    active_power_1:<br />
      name: 'BL0939A Active Power 1'<br />
    active_power_2:<br />
      name: 'BL0939A Active Power 2'<br />
    energy_1:<br />
      name: 'BL0939A Energy 1'<br />
    energy_2:<br />
      name: 'BL0939A Energy 2'<br />
    energy_total:<br />
      name: 'BL0939A Energy Total'<br />
      <br />
      <br />
      <br />
  # - platform: bl0939<br />
  # &nbsp;&nbsp;uart_id: uart_2<br />
  # &nbsp;&nbsp;update_interval: 10s<br />
  # &nbsp;&nbsp;voltage:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Voltage'<br />
  # &nbsp;&nbsp;current_1:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Current 1'<br />
  # &nbsp;&nbsp;current_2:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Current 2'<br />
  # &nbsp;&nbsp;active_power_1:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Active Power 1'<br />
  # &nbsp;&nbsp;active_power_2:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Active Power 2'<br />
  # &nbsp;&nbsp;energy_1:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Energy 1'<br />
  # &nbsp;&nbsp;energy_2:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Energy 2'<br />
  # &nbsp;&nbsp;energy_total:<br />
  #   &nbsp;&nbsp;name: 'BL0939B Energy Total'<br />
      <br />
<br />
# Example configuration entry for ESP32<br />
i2c:<br />
  sda: 4<br />
  scl: 5<br />
  scan: true<br />
  id: bus_a<br />
  <br />
pcf8574:<br />
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8<br />
    address: 0x24<br />
<br />
  - id: 'pcf8574_hub_in_1'  # for input channel 1-8<br />
    address: 0x22<br />
<br />
    <br />
# Individual outputs<br />
switch:<br />
  - platform: gpio<br />
    name: "e8t_output1"<br />
    id: "e8t_output1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output1-tuya<br />
    dp_id: 1<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output1"<br />
<br />
<br />
  - platform: gpio<br />
    name: "e8t_output2"<br />
    id: "e8t_output2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output2-tuya<br />
    dp_id: 2<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output2"<br />
      <br />
  - platform: gpio<br />
    name: "e8t_output3"<br />
    id: "e8t_output3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output3-tuya<br />
    dp_id: 3<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output3"<br />
      <br />
  - platform: gpio<br />
    name: "e8t_output4"<br />
    id: "e8t_output4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output4-tuya<br />
    dp_id: 4<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output4"<br />
      <br />
  - platform: gpio<br />
    name: "e8t_output5"<br />
    id: "e8t_output5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output5-tuya<br />
    dp_id: 5<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output5"<br />
      <br />
  - platform: gpio<br />
    name: "e8t_output6"<br />
    id: "e8t_output6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output6-tuya<br />
    dp_id: 6<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output6"<br />
<br />
  - platform: gpio<br />
    name: "e8t_output7"<br />
    id: "e8t_output7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output7-tuya<br />
    dp_id: 123<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output7"<br />
      <br />
  - platform: gpio<br />
    name: "e8t_output8"<br />
    id: "e8t_output8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 7<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t-output8-tuya<br />
    dp_id: 124<br />
    # hide from homeassistant ui<br />
    internal: true<br />
    # bind other switch, sync state<br />
    bind_switch_id: "e8t_output8"<br />
<br />
binary_sensor:<br />
  - platform: gpio<br />
    name: "e8t_input1"<br />
    id: "e8t_input1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input1 Tuya<br />
    dp_id: 122<br />
    bind_binary_sensor_id: e8t_input1<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input2"<br />
    id: "e8t_input2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input2 Tuya<br />
    dp_id: 121<br />
    bind_binary_sensor_id: e8t_input2<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input3"<br />
    id: "e8t_input3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input3 Tuya<br />
    dp_id: 120<br />
    bind_binary_sensor_id: e8t_input3<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input4"<br />
    id: "e8t_input4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input4 Tuya<br />
    dp_id: 119<br />
    bind_binary_sensor_id: e8t_input4<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input5"<br />
    id: "e8t_input5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input5 Tuya<br />
    dp_id: 118<br />
    bind_binary_sensor_id: e8t_input5<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input6"<br />
    id: "e8t_input6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input6 Tuya<br />
    dp_id: 117<br />
    bind_binary_sensor_id: e8t_input6<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input7"<br />
    id: "e8t_input7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input7 Tuya<br />
    dp_id: 116<br />
    bind_binary_sensor_id: e8t_input7<br />
    internal: true<br />
<br />
  - platform: gpio<br />
    name: "e8t_input8"<br />
    id: "e8t_input8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true<br />
  - platform: tuya_wifi_mcu<br />
    name: e8t_input8 Tuya<br />
    dp_id: 115<br />
    bind_binary_sensor_id: e8t_input8<br />
    internal: true<br />
<br />
web_server:<br />
  port: 80</code></div></div><br />
download yaml file: <!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=5344" target="_blank" title="">KC868-E8T-HA-Tuya.txt</a> (Size: 8.39 KB / Downloads: 389)
<!-- end: postbit_attachments_attachment --><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=5345" target="_blank" title="">e8t-tuya.png</a> (Size: 160.41 KB / Downloads: 529)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Tuya IoT platform parameter for KC868-E8T controller]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=5824</link>
			<pubDate>Fri, 31 May 2024 12:52:42 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=5824</guid>
			<description><![CDATA[PID:d8vwzka9smrcjznp<br />
<br />
switch01 DP ID:1<br />
switch02 DP ID:2<br />
switch03 DP ID:3<br />
switch04 DP ID:4<br />
switch05 DP ID:5<br />
switch06 DP ID:6<br />
switch07 DP ID:123<br />
switch08 DP ID:124]]></description>
			<content:encoded><![CDATA[PID:d8vwzka9smrcjznp<br />
<br />
switch01 DP ID:1<br />
switch02 DP ID:2<br />
switch03 DP ID:3<br />
switch04 DP ID:4<br />
switch05 DP ID:5<br />
switch06 DP ID:6<br />
switch07 DP ID:123<br />
switch08 DP ID:124]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-E16T vs KC868-A32 questions]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=4200</link>
			<pubDate>Fri, 26 Jan 2024 19:24:34 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=3563">DariusM</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=4200</guid>
			<description><![CDATA[<span style="font-size: small;" class="mycode_size">Hello friends,</span><br />
<br />
<span style="font-size: small;" class="mycode_size">I am renovating an old house and would be interested in one of the two modules bellow for automating some lights, garage door, etc. </span><br />
<br />
<span style="font-size: small;" class="mycode_size">The modules I am interested in are:</span><br />
<span style="font-size: small;" class="mycode_size">  1. ARDUINO ESP32 32 CHANNEL RELAY MODULE – KC868-A32  (I will refer to it as the "32 relays module")</span><br />
<span style="font-size: small;" class="mycode_size">  2. KC868-E16T ESP32 TUYA DIN RAIL RELAY MODULE  (I will refer to it as the "16 relays module")</span><br />
<br />
<span style="font-size: small;" class="mycode_size">I have a few questions if anybody could shed some light:</span><br />
<span style="font-size: small;" class="mycode_size">    1. What are the differences between the 2 modules (except the different number of relays, the relays current rating and the lack of digital input like Ds18B20 on one of the models)?</span><br />
<span style="font-size: small;" class="mycode_size">    2. Does the 32 relay model support RF frequency control via a remote ? </span><br />
<span style="font-size: small;" class="mycode_size">    3. </span><span style="font-size: small;" class="mycode_size">Does the 32 relay model support Tuya App control and </span>home assistant controll at the same time<span style="font-size: small;" class="mycode_size">? </span><br />
<span style="font-size: small;" class="mycode_size">    4. Does the 16 relay model support Tuya App control +  home assistant controll  + RF controll all at the same time?  </span><br />
<span style="font-size: small;" class="mycode_size">    5. For the 16 relay module, if I connect wired internet cable, is the Wifi Tuya antenna required to be installed in order for the tuya app part to work? (it will be placed in a location with wired internet, but very low quality wifi)</span><br />
<span style="font-size: small;" class="mycode_size">    6. In any of the 2 modules, the dry contact (digital inputs) require a momentary switch or it can be connected to a latching switch (standard wall light switch) ?</span><br />
<span style="font-size: small;" class="mycode_size">    7. What is the voltage present on the dry contact (digital inputs) (I would like if possible to connect in parallel with the wall switch, a led with resistor so I have a "night light" as a traditional light switch does have the indicator led)? </span><br />
<span style="font-size: small;" class="mycode_size">    8. Does the 16 relay module support HMI Display ? </span><br />
<br />
<br />
<span style="font-size: small;" class="mycode_size">P.S. I am asking for the 2 different models because for the start it may be enough 16 relays, but after further expansion/ adding new devices in the house I may require more then 16</span><br />
<br />
<span style="font-size: small;" class="mycode_size">Thank you in advance. </span><br />
<span style="font-size: small;" class="mycode_size">      Best Regards,</span><br />
<span style="font-size: small;" class="mycode_size">                     DariusM</span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: small;" class="mycode_size">Hello friends,</span><br />
<br />
<span style="font-size: small;" class="mycode_size">I am renovating an old house and would be interested in one of the two modules bellow for automating some lights, garage door, etc. </span><br />
<br />
<span style="font-size: small;" class="mycode_size">The modules I am interested in are:</span><br />
<span style="font-size: small;" class="mycode_size">  1. ARDUINO ESP32 32 CHANNEL RELAY MODULE – KC868-A32  (I will refer to it as the "32 relays module")</span><br />
<span style="font-size: small;" class="mycode_size">  2. KC868-E16T ESP32 TUYA DIN RAIL RELAY MODULE  (I will refer to it as the "16 relays module")</span><br />
<br />
<span style="font-size: small;" class="mycode_size">I have a few questions if anybody could shed some light:</span><br />
<span style="font-size: small;" class="mycode_size">    1. What are the differences between the 2 modules (except the different number of relays, the relays current rating and the lack of digital input like Ds18B20 on one of the models)?</span><br />
<span style="font-size: small;" class="mycode_size">    2. Does the 32 relay model support RF frequency control via a remote ? </span><br />
<span style="font-size: small;" class="mycode_size">    3. </span><span style="font-size: small;" class="mycode_size">Does the 32 relay model support Tuya App control and </span>home assistant controll at the same time<span style="font-size: small;" class="mycode_size">? </span><br />
<span style="font-size: small;" class="mycode_size">    4. Does the 16 relay model support Tuya App control +  home assistant controll  + RF controll all at the same time?  </span><br />
<span style="font-size: small;" class="mycode_size">    5. For the 16 relay module, if I connect wired internet cable, is the Wifi Tuya antenna required to be installed in order for the tuya app part to work? (it will be placed in a location with wired internet, but very low quality wifi)</span><br />
<span style="font-size: small;" class="mycode_size">    6. In any of the 2 modules, the dry contact (digital inputs) require a momentary switch or it can be connected to a latching switch (standard wall light switch) ?</span><br />
<span style="font-size: small;" class="mycode_size">    7. What is the voltage present on the dry contact (digital inputs) (I would like if possible to connect in parallel with the wall switch, a led with resistor so I have a "night light" as a traditional light switch does have the indicator led)? </span><br />
<span style="font-size: small;" class="mycode_size">    8. Does the 16 relay module support HMI Display ? </span><br />
<br />
<br />
<span style="font-size: small;" class="mycode_size">P.S. I am asking for the 2 different models because for the start it may be enough 16 relays, but after further expansion/ adding new devices in the house I may require more then 16</span><br />
<br />
<span style="font-size: small;" class="mycode_size">Thank you in advance. </span><br />
<span style="font-size: small;" class="mycode_size">      Best Regards,</span><br />
<span style="font-size: small;" class="mycode_size">                     DariusM</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-E8T Circuit diagram]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=3262</link>
			<pubDate>Wed, 13 Sep 2023 15:42:59 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=194">KinCony Support</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=3262</guid>
			<description><![CDATA[<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=3070" target="_blank" title="">E8T.jpg</a> (Size: 2.62 MB / Downloads: 1108)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=3070" target="_blank" title="">E8T.jpg</a> (Size: 2.62 MB / Downloads: 1108)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-E8T Factory Original Firmware and arduino source code]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=3185</link>
			<pubDate>Tue, 22 Aug 2023 14:46:14 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=3185</guid>
			<description><![CDATA[the firmware support use by Tuya app, INPUT trigger OUTPUT and RF remote control 1-8 relay and ALL ON and ALL OFF. (need learn RF signal for every relay)<br />
<br />
how to learn RF signal:   <br />
<img src="https://www.kincony.com/forum/attachment.php?aid=2714" loading="lazy"  alt="[Image: attachment.php?aid=2714]" class="mycode_img" />   <br />
<img src="https://www.kincony.com/forum/attachment.php?aid=2897" loading="lazy"  alt="[Image: attachment.php?aid=2897]" class="mycode_img" /><br />
firmware BIN file download:<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2898" target="_blank" title="">KC868-E8T_RF20230822.zip</a> (Size: 429.31 KB / Downloads: 776)
<!-- end: postbit_attachments_attachment --><br />
<br />
arduino IDE source code download:<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2899" target="_blank" title="">KC868-E8T_arduino_Tuya_RF.zip</a> (Size: 8.97 KB / Downloads: 809)
<!-- end: postbit_attachments_attachment --><br />
<br />
Tuya module arduino library download:<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2900" target="_blank" title="">Tuya_WiFi_MCU_SDK.zip</a> (Size: 55.73 KB / Downloads: 862)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[the firmware support use by Tuya app, INPUT trigger OUTPUT and RF remote control 1-8 relay and ALL ON and ALL OFF. (need learn RF signal for every relay)<br />
<br />
how to learn RF signal:   <br />
<img src="https://www.kincony.com/forum/attachment.php?aid=2714" loading="lazy"  alt="[Image: attachment.php?aid=2714]" class="mycode_img" />   <br />
<img src="https://www.kincony.com/forum/attachment.php?aid=2897" loading="lazy"  alt="[Image: attachment.php?aid=2897]" class="mycode_img" /><br />
firmware BIN file download:<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2898" target="_blank" title="">KC868-E8T_RF20230822.zip</a> (Size: 429.31 KB / Downloads: 776)
<!-- end: postbit_attachments_attachment --><br />
<br />
arduino IDE source code download:<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2899" target="_blank" title="">KC868-E8T_arduino_Tuya_RF.zip</a> (Size: 8.97 KB / Downloads: 809)
<!-- end: postbit_attachments_attachment --><br />
<br />
Tuya module arduino library download:<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2900" target="_blank" title="">Tuya_WiFi_MCU_SDK.zip</a> (Size: 55.73 KB / Downloads: 862)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Learn the remoter of E8T]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=3103</link>
			<pubDate>Mon, 24 Jul 2023 11:01:11 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=194">KinCony Support</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=3103</guid>
			<description><![CDATA[<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2714" target="_blank" title="">shuoming3000.jpg</a> (Size: 2.77 MB / Downloads: 3299)
<!-- end: postbit_attachments_attachment --><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2897" target="_blank" title="">e8t.png</a> (Size: 1.45 MB / Downloads: 3084)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2714" target="_blank" title="">shuoming3000.jpg</a> (Size: 2.77 MB / Downloads: 3299)
<!-- end: postbit_attachments_attachment --><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2897" target="_blank" title="">e8t.png</a> (Size: 1.45 MB / Downloads: 3084)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-E8T Factory Original Firmware for Tuya App]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2422</link>
			<pubDate>Wed, 30 Nov 2022 10:37:17 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=2422</guid>
			<description><![CDATA[Here is Factory Original Firmware for KC868-E8T. You can use Tuya mobile phone application directly. it supprt remote control by internet and manual control buttons on board. support remote control by RF 433MHz remoter, support Tuya app remote monitor 4 channel energy meter.<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1638" target="_blank" title="">KC868-E8T_02_ZS-32s-916.zip</a> (Size: 419.15 KB / Downloads: 688)
<!-- end: postbit_attachments_attachment --><br />
<br />
some people after downloaded ESPHome firmware for home assistant, if you want to use tuya app again, you can download the  Factory Original Firmware for recovery.<br />
<br />
about ESP flash tool download link and details see here : <a href="https://www.kincony.com/esp-module-flash-download-tools.html" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">https://www.kincony.com/esp-module-flash...tools.html</span></a>]]></description>
			<content:encoded><![CDATA[Here is Factory Original Firmware for KC868-E8T. You can use Tuya mobile phone application directly. it supprt remote control by internet and manual control buttons on board. support remote control by RF 433MHz remoter, support Tuya app remote monitor 4 channel energy meter.<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1638" target="_blank" title="">KC868-E8T_02_ZS-32s-916.zip</a> (Size: 419.15 KB / Downloads: 688)
<!-- end: postbit_attachments_attachment --><br />
<br />
some people after downloaded ESPHome firmware for home assistant, if you want to use tuya app again, you can download the  Factory Original Firmware for recovery.<br />
<br />
about ESP flash tool download link and details see here : <a href="https://www.kincony.com/esp-module-flash-download-tools.html" target="_blank" rel="noopener" class="mycode_url"><span style="color: #0072bc;" class="mycode_color">https://www.kincony.com/esp-module-flash...tools.html</span></a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Quectel EC200U LTE Cat 1 Module Software command]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2363</link>
			<pubDate>Sun, 23 Oct 2022 19:49:35 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=2363</guid>
			<description><![CDATA[Here are some documents of EC200U 4G module software<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1541" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_AT_Commands_Manual_V1.0.pdf</a> (Size: 1.23 MB / Downloads: 1427)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1542" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_Audio_Application_Note_V1.2.pdf</a> (Size: 280.37 KB / Downloads: 1466)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1543" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_Camera_Application_Note_V1.1.pdf</a> (Size: 264.27 KB / Downloads: 860)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1544" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_Dual_SIM_Single_Standby_Application_Note_V1.0.pdf</a> (Size: 200.12 KB / Downloads: 1801)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1545" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_Enhanced_Sleep_Mode_Application_Note_V1.1.pdf</a> (Size: 230.53 KB / Downloads: 1062)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1546" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_FILE_Application_Note_V1.2.pdf</a> (Size: 331.06 KB / Downloads: 948)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1547" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_Firmware_Download_Guide_V1.0.pdf</a> (Size: 372.14 KB / Downloads: 1177)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1548" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_FOTA_Application_Note_V1.0.pdf</a> (Size: 308.05 KB / Downloads: 1198)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1549" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_FTM_Application_Note_V1.1.pdf</a> (Size: 169.68 KB / Downloads: 1015)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1550" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_FTP(S)_Application_Note_V1.1.pdf</a> (Size: 353.67 KB / Downloads: 1167)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1551" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_HTTP(S)_Application_Note_V1.1.pdf</a> (Size: 408.22 KB / Downloads: 920)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1552" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_MMS_Application_Note_V1.0.pdf</a> (Size: 233.05 KB / Downloads: 810)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1553" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_MQTT_Application_Note_V1.1.pdf</a> (Size: 324.23 KB / Downloads: 909)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1554" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_MUX_Application_Note_V1.1.pdf</a> (Size: 276.14 KB / Downloads: 926)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1555" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_PPP_Application_Note_V1.1.pdf</a> (Size: 647.19 KB / Downloads: 1257)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1556" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_QuecCell_Application_Note_V1.2.pdf</a> (Size: 238.95 KB / Downloads: 929)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1557" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_QuecLocator_Application_Note_V1.0.pdf</a> (Size: 237.78 KB / Downloads: 1656)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1558" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_SSL_Application_Note_V1.1.pdf</a> (Size: 301.48 KB / Downloads: 885)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1559" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_TCP(IP)_Application_Note_V1.1.pdf</a> (Size: 462.73 KB / Downloads: 853)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1560" target="_blank" title="">Quectel_EC200U_Series&amp;EG912U-GL_GNSS_Application_Note_V1.1.pdf</a> (Size: 372.95 KB / Downloads: 1139)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1561" target="_blank" title="">Quectel_EC200U_Series_Dual_SIM_Dual_Standby_Application_Note_V1.0.pdf</a> (Size: 295.66 KB / Downloads: 1433)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Here are some documents of EC200U 4G module software<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1541" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_AT_Commands_Manual_V1.0.pdf</a> (Size: 1.23 MB / Downloads: 1427)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1542" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_Audio_Application_Note_V1.2.pdf</a> (Size: 280.37 KB / Downloads: 1466)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1543" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_Camera_Application_Note_V1.1.pdf</a> (Size: 264.27 KB / Downloads: 860)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1544" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_Dual_SIM_Single_Standby_Application_Note_V1.0.pdf</a> (Size: 200.12 KB / Downloads: 1801)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1545" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_Enhanced_Sleep_Mode_Application_Note_V1.1.pdf</a> (Size: 230.53 KB / Downloads: 1062)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1546" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_FILE_Application_Note_V1.2.pdf</a> (Size: 331.06 KB / Downloads: 948)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1547" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_Firmware_Download_Guide_V1.0.pdf</a> (Size: 372.14 KB / Downloads: 1177)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1548" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_FOTA_Application_Note_V1.0.pdf</a> (Size: 308.05 KB / Downloads: 1198)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1549" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_FTM_Application_Note_V1.1.pdf</a> (Size: 169.68 KB / Downloads: 1015)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1550" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_FTP(S)_Application_Note_V1.1.pdf</a> (Size: 353.67 KB / Downloads: 1167)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1551" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_HTTP(S)_Application_Note_V1.1.pdf</a> (Size: 408.22 KB / Downloads: 920)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1552" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_MMS_Application_Note_V1.0.pdf</a> (Size: 233.05 KB / Downloads: 810)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1553" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_MQTT_Application_Note_V1.1.pdf</a> (Size: 324.23 KB / Downloads: 909)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1554" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_MUX_Application_Note_V1.1.pdf</a> (Size: 276.14 KB / Downloads: 926)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1555" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_PPP_Application_Note_V1.1.pdf</a> (Size: 647.19 KB / Downloads: 1257)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1556" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_QuecCell_Application_Note_V1.2.pdf</a> (Size: 238.95 KB / Downloads: 929)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1557" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_QuecLocator_Application_Note_V1.0.pdf</a> (Size: 237.78 KB / Downloads: 1656)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1558" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_SSL_Application_Note_V1.1.pdf</a> (Size: 301.48 KB / Downloads: 885)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1559" target="_blank" title="">Quectel_EC200U&amp;EG915U_Series_TCP(IP)_Application_Note_V1.1.pdf</a> (Size: 462.73 KB / Downloads: 853)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1560" target="_blank" title="">Quectel_EC200U_Series&amp;EG912U-GL_GNSS_Application_Note_V1.1.pdf</a> (Size: 372.95 KB / Downloads: 1139)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1561" target="_blank" title="">Quectel_EC200U_Series_Dual_SIM_Dual_Standby_Application_Note_V1.0.pdf</a> (Size: 295.66 KB / Downloads: 1433)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-E8T Quectel EC200U LTE Cat 1 Module datasheet]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2362</link>
			<pubDate>Sun, 23 Oct 2022 19:47:10 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=2362</guid>
			<description><![CDATA[KC868-E8T default on PCB board use "EC200U-EU" version 4G module. if you want to customsize define 4G module by "EC200U-CN" or "EC200U-AU", please contact with us.<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1540" target="_blank" title="">Quectel_EC200U_Series_LTE_Standard_Specification_.pdf</a> (Size: 223.23 KB / Downloads: 1273)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[KC868-E8T default on PCB board use "EC200U-EU" version 4G module. if you want to customsize define 4G module by "EC200U-CN" or "EC200U-AU", please contact with us.<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/pdf.png" title="Adobe Acrobat PDF" border="0" alt=".pdf" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1540" target="_blank" title="">Quectel_EC200U_Series_LTE_Standard_Specification_.pdf</a> (Size: 223.23 KB / Downloads: 1273)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-E8T 4G module SMS command list]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2361</link>
			<pubDate>Sun, 23 Oct 2022 18:51:38 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=2361</guid>
			<description><![CDATA[<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1539" target="_blank" title="">SMS_pix450.jpg</a> (Size: 76.92 KB / Downloads: 1107)
<!-- end: postbit_attachments_attachment --><br />
<br />
<br />
1. Set a password<br />
Format: KC + old password + new password<br />
Note: The initial default password is 0000, and the password is 4 digits<br />
Such as sending SMS: kc0000new1234<br />
Reply to SMS: new password is 1234<br />
<br />
2. Restore default password<br />
Press the GPIO0 button on the board for more than 5 seconds, the password will be restored to 0000<br />
<br />
3. Set the administrator number<br />
If the password is 1234<br />
Send SMS: kc1234set13100000000<br />
Reply to SMS: manager 13100000000 set ok<br />
Up to 6 administrator numbers can be set<br />
<br />
The password and administrator number are written into eprom, and they are still valid after power off and on again.<br />
<br />
4. Clear the administrator number<br />
If the password is 1234<br />
Send SMS: kc1234clear13100000000<br />
Reply to SMS: clear manager 13100000000 ok<br />
<br />
5. Clear all administrator numbers<br />
If the password is 1234<br />
Send SMS: kc1234clearall<br />
Reply to SMS: clear all manager ok<br />
<br />
6. Turn on one relay<br />
Send SMS: kc1234relay1on<br />
Reply to SMS: relay 1 is ON<br />
<br />
ID:1-8 represent 1-8 relays<br />
<br />
7. Turn off one relay<br />
Send SMS: kc1234relay1off<br />
Reply to SMS: relay 1 is OFF<br />
<br />
ID:1-8 represent 1-8 relays<br />
<br />
8. Turn on all relays<br />
Send SMS: kc1234allon<br />
Reply to SMS: ALL relay are ON<br />
<br />
9. Turn off all relays<br />
Send SMS: kc1234alloff<br />
Reply to SMS: ALL relay are OFF<br />
<br />
10. Jog control one relay<br />
<br />
Jog control means that relay is turned on first, and after 1 second, it will be automatically turned off.<br />
<br />
Send SMS: kc1234inching1<br />
Reply to SMS: relay 1 is inching control ok<br />
<br />
ID:1-8 represent 1-8 relays<br />
<br />
11. Read the current state of the relay<br />
<br />
Send SMS: kc1234state<br />
Reply to SMS: relay 1=ON 2=ON 3=OFF 4=ON 5=OFF 6=ON 7=ON]]></description>
			<content:encoded><![CDATA[<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1539" target="_blank" title="">SMS_pix450.jpg</a> (Size: 76.92 KB / Downloads: 1107)
<!-- end: postbit_attachments_attachment --><br />
<br />
<br />
1. Set a password<br />
Format: KC + old password + new password<br />
Note: The initial default password is 0000, and the password is 4 digits<br />
Such as sending SMS: kc0000new1234<br />
Reply to SMS: new password is 1234<br />
<br />
2. Restore default password<br />
Press the GPIO0 button on the board for more than 5 seconds, the password will be restored to 0000<br />
<br />
3. Set the administrator number<br />
If the password is 1234<br />
Send SMS: kc1234set13100000000<br />
Reply to SMS: manager 13100000000 set ok<br />
Up to 6 administrator numbers can be set<br />
<br />
The password and administrator number are written into eprom, and they are still valid after power off and on again.<br />
<br />
4. Clear the administrator number<br />
If the password is 1234<br />
Send SMS: kc1234clear13100000000<br />
Reply to SMS: clear manager 13100000000 ok<br />
<br />
5. Clear all administrator numbers<br />
If the password is 1234<br />
Send SMS: kc1234clearall<br />
Reply to SMS: clear all manager ok<br />
<br />
6. Turn on one relay<br />
Send SMS: kc1234relay1on<br />
Reply to SMS: relay 1 is ON<br />
<br />
ID:1-8 represent 1-8 relays<br />
<br />
7. Turn off one relay<br />
Send SMS: kc1234relay1off<br />
Reply to SMS: relay 1 is OFF<br />
<br />
ID:1-8 represent 1-8 relays<br />
<br />
8. Turn on all relays<br />
Send SMS: kc1234allon<br />
Reply to SMS: ALL relay are ON<br />
<br />
9. Turn off all relays<br />
Send SMS: kc1234alloff<br />
Reply to SMS: ALL relay are OFF<br />
<br />
10. Jog control one relay<br />
<br />
Jog control means that relay is turned on first, and after 1 second, it will be automatically turned off.<br />
<br />
Send SMS: kc1234inching1<br />
Reply to SMS: relay 1 is inching control ok<br />
<br />
ID:1-8 represent 1-8 relays<br />
<br />
11. Read the current state of the relay<br />
<br />
Send SMS: kc1234state<br />
Reply to SMS: relay 1=ON 2=ON 3=OFF 4=ON 5=OFF 6=ON 7=ON]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-E8T demo configure for ESPhome]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2360</link>
			<pubDate>Sun, 23 Oct 2022 18:44:09 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=2360</guid>
			<description><![CDATA[<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1537" target="_blank" title="">KC868-E8T-home-assistant.png</a> (Size: 147.07 KB / Downloads: 1314)
<!-- end: postbit_attachments_attachment --><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1580" target="_blank" title="">KC868-E8T-Home assistant.txt</a> (Size: 4.81 KB / Downloads: 517)
<!-- end: postbit_attachments_attachment --><br />
<br />
esphome:<br />
  name: e8t<br />
  platform: ESP32<br />
  board: esp32dev<br />
  on_boot:  #Power chip BL0939 initialization<br />
    priority: 600<br />
    then:<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x42, 0x00, 0x00, 0xDF]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x38, 0x3C, 0x00, 0x00, 0xE6]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x42, 0x00, 0x00, 0xDF]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x3A, 0x01, 0x00, 0x00, 0x1F]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x00, 0x00, 0x00, 0x21]<br />
uart:<br />
  - id: uart_1<br />
    tx_pin: GPIO12<br />
    rx_pin: GPIO39<br />
    baud_rate: 4800<br />
    parity: NONE<br />
    stop_bits: 2    <br />
  <br />
  - id: uart_2<br />
    tx_pin: GPIO33<br />
    rx_pin: GPIO36<br />
    baud_rate: 4800<br />
    parity: NONE<br />
    stop_bits: 2    <br />
<br />
# Enable logging<br />
logger:<br />
<br />
# Enable Home Assistant API<br />
api:<br />
<br />
ota:<br />
  password: "d83d604e4f0ae287fb041dbaf31524d9"<br />
<br />
<br />
# Example configuration entry<br />
ethernet:<br />
  type: LAN8720<br />
  mdc_pin: GPIO23<br />
  mdio_pin: GPIO18<br />
  clk_mode: GPIO17_OUT<br />
  phy_addr: 0<br />
  <br />
<br />
<br />
sensor:<br />
  - platform: bl0939<br />
    uart_id: uart_1<br />
    update_interval: 10s<br />
    voltage:<br />
      name: 'BL0939A Voltage'<br />
    current_1:<br />
      name: 'BL0939A Current 1'<br />
    current_2:<br />
      name: 'BL0939A Current 2'<br />
    active_power_1:<br />
      name: 'BL0939A Active Power 1'<br />
    active_power_2:<br />
      name: 'BL0939A Active Power 2'<br />
    energy_1:<br />
      name: 'BL0939A Energy 1'<br />
    energy_2:<br />
      name: 'BL0939A Energy 2'<br />
    energy_total:<br />
      name: 'BL0939A Energy Total'<br />
      <br />
      <br />
      <br />
  - platform: bl0939<br />
    uart_id: uart_2<br />
    update_interval: 10s<br />
    voltage:<br />
      name: 'BL0939B Voltage'<br />
    current_1:<br />
      name: 'BL0939B Current 1'<br />
    current_2:<br />
      name: 'BL0939B Current 2'<br />
    active_power_1:<br />
      name: 'BL0939B Active Power 1'<br />
    active_power_2:<br />
      name: 'BL0939B Active Power 2'<br />
    energy_1:<br />
      name: 'BL0939B Energy 1'<br />
    energy_2:<br />
      name: 'BL0939B Energy 2'<br />
    energy_total:<br />
      name: 'BL0939B Energy Total'<br />
      <br />
<br />
# Example configuration entry for ESP32<br />
i2c:<br />
  sda: 4<br />
  scl: 5<br />
  scan: true<br />
  id: bus_a<br />
  <br />
pcf8574:<br />
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8<br />
    address: 0x24<br />
<br />
  - id: 'pcf8574_hub_in_1'  # for input channel 1-8<br />
    address: 0x22<br />
<br />
    <br />
# Individual outputs<br />
switch:<br />
  - platform: gpio<br />
    name: "e8t-light1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-light2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "e8t-light3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "e8t-light4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "e8t-light5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "e8t-light6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-light7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "e8t-light8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 7<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
binary_sensor:<br />
  - platform: gpio<br />
    name: "e8t-input1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true]]></description>
			<content:encoded><![CDATA[<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1537" target="_blank" title="">KC868-E8T-home-assistant.png</a> (Size: 147.07 KB / Downloads: 1314)
<!-- end: postbit_attachments_attachment --><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.kincony.com/forum/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1580" target="_blank" title="">KC868-E8T-Home assistant.txt</a> (Size: 4.81 KB / Downloads: 517)
<!-- end: postbit_attachments_attachment --><br />
<br />
esphome:<br />
  name: e8t<br />
  platform: ESP32<br />
  board: esp32dev<br />
  on_boot:  #Power chip BL0939 initialization<br />
    priority: 600<br />
    then:<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x42, 0x00, 0x00, 0xDF]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x38, 0x3C, 0x00, 0x00, 0xE6]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x42, 0x00, 0x00, 0xDF]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x3A, 0x01, 0x00, 0x00, 0x1F]<br />
      - delay: 1ms<br />
      - uart.write:<br />
          id: uart_1<br />
          data: [0xA5, 0x39, 0x00, 0x00, 0x00, 0x21]<br />
uart:<br />
  - id: uart_1<br />
    tx_pin: GPIO12<br />
    rx_pin: GPIO39<br />
    baud_rate: 4800<br />
    parity: NONE<br />
    stop_bits: 2    <br />
  <br />
  - id: uart_2<br />
    tx_pin: GPIO33<br />
    rx_pin: GPIO36<br />
    baud_rate: 4800<br />
    parity: NONE<br />
    stop_bits: 2    <br />
<br />
# Enable logging<br />
logger:<br />
<br />
# Enable Home Assistant API<br />
api:<br />
<br />
ota:<br />
  password: "d83d604e4f0ae287fb041dbaf31524d9"<br />
<br />
<br />
# Example configuration entry<br />
ethernet:<br />
  type: LAN8720<br />
  mdc_pin: GPIO23<br />
  mdio_pin: GPIO18<br />
  clk_mode: GPIO17_OUT<br />
  phy_addr: 0<br />
  <br />
<br />
<br />
sensor:<br />
  - platform: bl0939<br />
    uart_id: uart_1<br />
    update_interval: 10s<br />
    voltage:<br />
      name: 'BL0939A Voltage'<br />
    current_1:<br />
      name: 'BL0939A Current 1'<br />
    current_2:<br />
      name: 'BL0939A Current 2'<br />
    active_power_1:<br />
      name: 'BL0939A Active Power 1'<br />
    active_power_2:<br />
      name: 'BL0939A Active Power 2'<br />
    energy_1:<br />
      name: 'BL0939A Energy 1'<br />
    energy_2:<br />
      name: 'BL0939A Energy 2'<br />
    energy_total:<br />
      name: 'BL0939A Energy Total'<br />
      <br />
      <br />
      <br />
  - platform: bl0939<br />
    uart_id: uart_2<br />
    update_interval: 10s<br />
    voltage:<br />
      name: 'BL0939B Voltage'<br />
    current_1:<br />
      name: 'BL0939B Current 1'<br />
    current_2:<br />
      name: 'BL0939B Current 2'<br />
    active_power_1:<br />
      name: 'BL0939B Active Power 1'<br />
    active_power_2:<br />
      name: 'BL0939B Active Power 2'<br />
    energy_1:<br />
      name: 'BL0939B Energy 1'<br />
    energy_2:<br />
      name: 'BL0939B Energy 2'<br />
    energy_total:<br />
      name: 'BL0939B Energy Total'<br />
      <br />
<br />
# Example configuration entry for ESP32<br />
i2c:<br />
  sda: 4<br />
  scl: 5<br />
  scan: true<br />
  id: bus_a<br />
  <br />
pcf8574:<br />
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8<br />
    address: 0x24<br />
<br />
  - id: 'pcf8574_hub_in_1'  # for input channel 1-8<br />
    address: 0x22<br />
<br />
    <br />
# Individual outputs<br />
switch:<br />
  - platform: gpio<br />
    name: "e8t-light1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 0<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-light2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 1<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "e8t-light3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 2<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "e8t-light4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 3<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "e8t-light5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 4<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "e8t-light6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 5<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-light7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 6<br />
      mode: OUTPUT<br />
      inverted: true<br />
      <br />
  - platform: gpio<br />
    name: "e8t-light8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_out_1<br />
      number: 7<br />
      mode: OUTPUT<br />
      inverted: true<br />
<br />
binary_sensor:<br />
  - platform: gpio<br />
    name: "e8t-input1"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 0<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input2"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 1<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input3"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 2<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input4"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 3<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input5"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 4<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input6"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 5<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input7"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 6<br />
      mode: INPUT<br />
      inverted: true<br />
<br />
  - platform: gpio<br />
    name: "e8t-input8"<br />
    pin:<br />
      pcf8574: pcf8574_hub_in_1<br />
      number: 7<br />
      mode: INPUT<br />
      inverted: true]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[KC868-E8T ESP32 and Tuya I/O pin define]]></title>
			<link>https://www.kincony.com/forum/showthread.php?tid=2359</link>
			<pubDate>Sun, 23 Oct 2022 18:42:07 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.kincony.com/forum/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.kincony.com/forum/showthread.php?tid=2359</guid>
			<description><![CDATA[IIC SDA:4<br />
IIC SCL:5<br />
<br />
Relay_IIC_address 0x24<br />
<br />
Input_IIC_address 0x22<br />
<br />
OLED address: 0x78<br />
<br />
DS3231 RTC address: 0x68<br />
<br />
DS18B20/DHT11/DHT21/LED strip : 14<br />
<br />
RF433MHz wireless RXD: 32<br />
<br />
4G module RXD: 35<br />
4G module TXD: 15<br />
<br />
TUYA module RXD: 16<br />
TUYA module TXD: 13<br />
<br />
RS485 RXD: 34<br />
RS485 TXD: 2<br />
<br />
energy meter 1-2 channel RXD: 39<br />
energy meter 1-2 channel TXD: 12<br />
<br />
energy meter 3-4 channel RXD: 36<br />
energy meter 3-4 channel TXD: 33<br />
<br />
Ethernet (LAN8720) I/O define:<br />
<br />
#define ETH_ADDR        0<br />
#define ETH_POWER_PIN  -1<br />
#define ETH_MDC_PIN    23<br />
#define ETH_MDIO_PIN  18<br />
#define ETH_TYPE      ETH_PHY_LAN8720<br />
#define ETH_CLK_MODE  ETH_CLOCK_GPIO17_OUT]]></description>
			<content:encoded><![CDATA[IIC SDA:4<br />
IIC SCL:5<br />
<br />
Relay_IIC_address 0x24<br />
<br />
Input_IIC_address 0x22<br />
<br />
OLED address: 0x78<br />
<br />
DS3231 RTC address: 0x68<br />
<br />
DS18B20/DHT11/DHT21/LED strip : 14<br />
<br />
RF433MHz wireless RXD: 32<br />
<br />
4G module RXD: 35<br />
4G module TXD: 15<br />
<br />
TUYA module RXD: 16<br />
TUYA module TXD: 13<br />
<br />
RS485 RXD: 34<br />
RS485 TXD: 2<br />
<br />
energy meter 1-2 channel RXD: 39<br />
energy meter 1-2 channel TXD: 12<br />
<br />
energy meter 3-4 channel RXD: 36<br />
energy meter 3-4 channel TXD: 33<br />
<br />
Ethernet (LAN8720) I/O define:<br />
<br />
#define ETH_ADDR        0<br />
#define ETH_POWER_PIN  -1<br />
#define ETH_MDC_PIN    23<br />
#define ETH_MDIO_PIN  18<br />
#define ETH_TYPE      ETH_PHY_LAN8720<br />
#define ETH_CLK_MODE  ETH_CLOCK_GPIO17_OUT]]></content:encoded>
		</item>
	</channel>
</rss>