Smart Home Automation Forum
A24 wiring circuit diagram - Printable Version

+- Smart Home Automation Forum (https://www.kincony.com/forum)
+-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=20)
+--- Forum: KinCony A24 (https://www.kincony.com/forum/forumdisplay.php?fid=56)
+--- Thread: A24 wiring circuit diagram (/showthread.php?tid=4036)



A24 wiring circuit diagram - KinCony Support - 12-25-2023

   


RE: A24 wiring circuit diagram - kiloptero - 05-28-2024

Hi, I am interested in making a panel similar to this one. https://www.kincony.com/32ch-smart-distribution-panel-with-energy-monitoring-tuya-home-assistant.html . I need 2 breakers to be 32 Ampers. I only found 24v models.
How could I have a mix of 12v and 24v Ac connectors at the same time? I also see this excellent video https://www.youtube.com/watch?v=FE5fSduc0uI&t=597s . I only see 1 12v power supply. If someone could guide me. Great


RE: A24 wiring circuit diagram - admin - 05-28-2024

let controller's relay "COM" with a dc24v power supply, "NO" output to DC contactor's coin. so that can control ON/OFF 24v voltage.


RE: A24 wiring circuit diagram - kiloptero - 05-28-2024

My mistake sorry. So you connect the 220V L. to the A24 (in the coms) and then directly to the conector? Thanks!

any recommendation
32Amp
https://es.aliexpress.com/item/1005003790732789.html?pdp_npi=4%40dis%21CLP%21CLP%2015%2C839%21CLP%2015%2C839%21%21%2117.00%2117.00%21%402103081017168629397372354e43e3%2112000027177429589%21sh%21CL%21223119909%21&spm=a2g0o.store_pc_allItems_or_groupList.new_all_items_2007507417297.1005003790732789&gatewayAdapt=glo2esp

25 amp
https://es.aliexpress.com/item/33011846640.html?pdp_npi=4%40dis%21CLP%21CLP%208%2C385%21CLP%208%2C385%21%21%219.00%219.00%21%402103081017168629397372354e43e3%2112000024308680546%21sh%21CL%21223119909%21&spm=a2g0o.store_pc_allItems_or_groupList.new_all_items_2007507417297.33011846640&gatewayAdapt=glo2esp


RE: A24 wiring circuit diagram - kiloptero - 05-28-2024

hi.. So just the A24 as a bypass and connect directly the L to the COM and to the AC connector? Any recommendation like this ?

One for 32 and other for 25.

https://es.aliexpress.com/item/33011846640.html?pdp_npi=4%40dis%21CLP%21CLP%208%2C385%21CLP%208%2C385%21%21%219.00%219.00%21%402103081017168629397372354e43e3%2112000024308680546%21sh%21CL%21223119909%21&spm=a2g0o.store_pc_allItems_or_groupList.new_all_items_2007507417297.33011846640&gatewayAdapt=glo2esp

https://es.aliexpress.com/item/1005003790732789.html?pdp_npi=4%40dis%21CLP%21CLP%2015%2C839%21CLP%2015%2C839%21%21%2117.00%2117.00%21%402103297517168631351901263ee482%2112000027177429589%21sh%21CL%21223119909%21&spm=a2g0o.store_pc_allItems_or_groupList.new_all_items_2007507417297.1005003790732789&gatewayAdapt=glo2esp

THanks for advise.. Just want to be sure what to purchase


RE: A24 wiring circuit diagram - admin - 05-28-2024

yes, if use AC contactor, just use L to COM, so relay output to control AC contactor.


RE: A24 wiring circuit diagram - kiloptero - 07-13-2024

Its possible to use the rs485 in this board to detect consume with your rs485 meter (80a) adding this code to the yaml?

uart:
  id: mod_bus
  tx_pin: 33
  rx_pin: 32
  baud_rate: 9600
  stop_bits: 1
  parity: EVEN

modbus:
  id: modbus1
  uart_id: mod_bus

modbus_controller:
  - id: a24
    address: 0x01
    modbus_id: modbus1
    setup_priority: -10
    update_interval: 5s


sensor:
  - platform: modbus_controller
    modbus_controller_id: a24
    name: "Voltage"
    id: modbus_voltage
    register_type: holding
    address: 0x64
    unit_of_measurement: "V"
    value_type: FP32
    accuracy_decimals: 2

  - platform: modbus_controller
    modbus_controller_id: a24
    name: "Current"
    id: modbus_current
    register_type: holding
    address: 0x6A
    unit_of_measurement: "A"
    value_type: FP32
    accuracy_decimals: 2

  - platform: modbus_controller
    modbus_controller_id: a24
    name: "Active Power"
    id: modbus_Active_Power
    register_type: holding
    address: 0x76
    unit_of_measurement: "kW"
    value_type: FP32
    accuracy_decimals: 2

  - platform: modbus_controller
    modbus_controller_id: a24
    name: "Power Factor"
    id: modbus_Power_Factor
    register_type: holding
    address: 0x8E
    unit_of_measurement: ""
    value_type: FP32
    accuracy_decimals: 2

  - platform: modbus_controller
    modbus_controller_id: a24
    name: "Grid Frequency"
    id: modbus_Grid_Frequency
    register_type: holding
    address: 0x90
    unit_of_measurement: "hz"
    value_type: FP32
    accuracy_decimals: 2

  - platform: modbus_controller
    modbus_controller_id: a24
    name: "Total Energy"
    id: modbus_Total_Energy
    register_type: holding
    address: 0x0
    unit_of_measurement: "kWh"
    value_type: FP32
    accuracy_decimals: 2


RE: A24 wiring circuit diagram - admin - 07-14-2024

don't post repeat question. post one topic is ok.