Skip to content
View in the app

A better way to browse. Learn more.

Power Forum - Renewable Energy Discussion

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Tybord

Members
  • Joined

  • Last visited

  1. You take it apart, and there are the rx, tx 3.3v, gnd, and the gpio0 port and a usb rs232 adapter and ESPHome-Flasher for gpio0 to gnd.
  2. https://github.com/tasmota/tasmotizer
  3. Then you have to save him with the tasomizer in front of him. and you need a usb rs232 adapter that is 3.3v because the esp07 will be destroyed.
  4. You take it apart, and there are the rx, tx 3.3v, gnd, and the gpio0 port and a usb rs232 adapter and ESPHome-Flasher for gpio0 to gnd.
  5. Here is the yaml if anyone wants to hack in Hungarian esphome: name: easun-smx-ll-inverter friendly_name: Easun SMX-ll Inverter esp8266: board: esp07 # Enable logging logger: # Enable Home Assistant API api: ota: password: ...................................................... wifi: ssid: !secret wifi_ssid password: !secret wifi_password # Enable fallback hotspot (captive portal) in case wifi connection fails ap: ssid: "Easun-Smx-Ll-Inverter" password: ".............................." web_server: port: 80 captive_portal: uart: rx_pin: GPIO3 tx_pin: GPIO1 id: mod_bus baud_rate: 9600 stop_bits: 1 modbus: send_wait_time: 200ms id: mod_bus_1 modbus_controller: - id: easun ## the Modbus device addr address: 0x1 modbus_id: mod_bus_1 command_throttle: 200ms setup_priority: -10 update_interval: 20s sensor: - platform: modbus_controller modbus_controller_id: easun name: "Akkumlátor SOC" id: battery_capacity_soc register_type: holding address: 0x0100 unit_of_measurement: "%" value_type: U_WORD - platform: modbus_controller modbus_controller_id: easun name: "Akkumlátor Volt" id: battery_voltage register_type: holding address: 0x0101 unit_of_measurement: "V" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: easun name: "Akkumlátor Áram" id: battery_current register_type: holding address: 0x0102 unit_of_measurement: "A" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: easun name: "Akkumlátor Töltés Napi" id: battery_charging_day register_type: holding address: 0xF02D unit_of_measurement: "Ah" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: easun name: "Akkumlátor Fogyaszás Napi" id: battery_discharging_day register_type: holding address: 0xF02E unit_of_measurement: "Ah" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: easun name: "Napelem Feszültség" id: solar_voltage register_type: holding address: 0x0107 unit_of_measurement: "V" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: easun name: "Napelem Áram" id: solar_amp register_type: holding address: 0x0108 unit_of_measurement: "A" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: easun name: "Napelem Watt" id: solar_power register_type: holding address: 0x0109 unit_of_measurement: "W" value_type: U_WORD - platform: modbus_controller modbus_controller_id: easun name: "Napelem Töltés Napi " id: solar_power_generation register_type: holding address: 0xF02F unit_of_measurement: "kWh" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 device_class: energy - platform: modbus_controller modbus_controller_id: easun name: "Inverter Feszültség" id: inverter_voltage register_type: holding address: 0x0216 unit_of_measurement: "V" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: easun name: "Inverter Áram" id: inverter_current register_type: holding address: 0x0217 unit_of_measurement: "A" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: easun name: "Inverter Hz" id: inverter_frequency register_type: holding address: 0x0218 unit_of_measurement: "Hz" value_type: U_WORD accuracy_decimals: 2 filters: - multiply: 0.01 - platform: modbus_controller modbus_controller_id: easun name: "Inverter Dc Hőfok" id: inverter_dc_temp register_type: holding address: 0x0221 unit_of_measurement: "C" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: easun name: "Inverter Ac Hőfok" id: inverter_ac_temp register_type: holding address: 0x0222 unit_of_measurement: "C" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: easun name: "Inverter Tr Hőfok" id: inverter_tr_temp register_type: holding address: 0x0223 unit_of_measurement: "C" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: easun name: "Fogyasztás Napi" id: load_power_generation_on_day register_type: holding address: 0xF030 unit_of_measurement: "kWh" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 device_class: energy - platform: modbus_controller modbus_controller_id: easun name: "Napelem Halmozott Termelés" id: PV_Cumulative_Power_Generation register_type: holding address: 0xF038 unit_of_measurement: "kWh" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 device_class: energy - platform: modbus_controller modbus_controller_id: easun name: "Inverter Halmozott Fogyasztás" id: Load_Cumulative_Power_Consumption register_type: holding address: 0xF03A unit_of_measurement: "kWh" value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 device_class: energy select: - platform: modbus_controller modbus_controller_id: easun id: output_priority name: "Kimeneti Prioritás" address: 0xE204 value_type: U_WORD optionsmap: "SOL": 0 "UTI": 1 "SBU": 2 - platform: modbus_controller modbus_controller_id: easun id: output_power_saving name: "Energia Takarékos Mód" address: 0xE20C value_type: U_WORD optionsmap: "KI": 0 "BE": 1 output: - platform: gpio pin: GPIO0 id: srv_led status_led: pin: number: GPIO4 inverted: false binary_sensor: - platform: gpio pin: number: GPIO12 mode: input: true pullup: false inverted: true name: "Loger" - platform: gpio pin: number: GPIO14 mode: input: true pullup: false inverted: true name: "Loger1"
  6. Hello, I also created a yaml file for my SMX-ll 3.6 inverter and loaded the firmware into the data logger, which can be integrated into homeassistans. to do.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.