Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. pboeck

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 55
    • Best 9
    • Groups 1

    pboeck

    @pboeck

    Starter

    11
    Reputation
    14
    Profile views
    55
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    pboeck Follow
    Starter

    Best posts made by pboeck

    • RE: In IQontrol States auf True/False früher An/Aus

      @lobito Du kannst bei jedem Datenpunkt einstellen was in IQontrol angezeigt wird.

      Bildschirmfoto 2021-11-30 um 17.08.06.png

      posted in ioBroker Allgemein
      P
      pboeck
    • RE: [ESPHome] Beta release

      @dutchman Vielleicht noch den neuen Pfad: /opt/iobroker/iobroker-data/esphome.0
      in den Hinweis mit einfügen.
      Dort einfach die gesicherten Daten rein kopieren.

      posted in Tester
      P
      pboeck
    • RE: ESPhome - Werte per MQTT zum ESP senden

      @a200 Aktiviere mal den Web Server:

      web_server:
        port: 80
        auth:
          username: xx
          password: xx
      

      Da sieht man dann alle Werte:

      Bildschirmfoto 2022-01-27 um 15.07.14.png

      posted in Hardware
      P
      pboeck
    • RE: Adapter: M-Bus mit Cyble V2 Sensor

      @homoran
      Der Adapter wir normalerweise über den MBus versorgt.
      Die Batterie ist für die interne Uhr und Zähler, bei Ausfall des Busses.
      Ist eine CR3032 und kann getauscht werden.

      posted in ioBroker Allgemein
      P
      pboeck
    • RE: [ESPHome] Beta release

      @noah3112
      Hier ist die komplette .yaml und das Blockly:

      esphome:
        name: testdisplay
        platform: ESP32
        board: nodemcu-32s
      
      wifi:
        ssid: "XX"
        password: "XX"
        manual_ip:
          static_ip: X
          gateway: X
          subnet: X
      
        # Enable fallback hotspot (captive portal) in case wifi connection fails
        ap:
          ssid: "Test Display Fallback Hotspot"
          password: "X"
      
      captive_portal:
      
      # Enable logging
      logger:
        baud_rate: 0
      #  level: ERROR
      
      # Enable Home Assistant API
      # api:
      #  password: "XX"
      mqtt:
        broker: XX
        username: XX
        password: XX
      
      ota:
        password: "X"
        
      web_server:
        port: 80
        auth:
          username: XX
          password: XX
          
      time:
        - platform: sntp
          servers: XX
          id: timeact 
      spi:
        clk_pin: GPIO18
        mosi_pin: GPIO23
        miso_pin: GPIO19
        
      sensor:
        - platform: wifi_signal
          id: WLAN
          name: "WiFi Signal"
          update_interval: 60s
        
      font:
        - file: "Roboto-Regular.ttf"
          id: RB3
          size: 24
        - file: "Roboto-Regular.ttf"
          id: 
          size: 20
        - file: "Roboto-Regular.ttf"
          id: RB1
          size: 16  
      color:
        - id: red_01
          red: 100%
          green: 0%
          blue: 0%    
        - id: blue_01
          red: 0%
          green: 0%
          blue: 100%
        - id: green_01
          red: 0%
          green: 100%
          blue: 0%    
      display:
        - platform: ili9341
          model: TFT 2.4
          id: Display1
          cs_pin: GPIO5
          dc_pin: GPIO4
          led_pin: GPIO15  
          reset_pin: GPIO22
          rotation: 90°
          pages:
            - id: page1
              lambda: |-
                it.strftime(160, 0, id(RB1), TextAlign::TOP_CENTER, "%X    %d.%m.%y", id(timeact).now());
                it.printf(5, 25, id(RB3), id(green_01), "%s", id(Zeile11).state.c_str());
                it.printf(5, 60, id(RB3), id(green_01), "%s", id(Zeile12).state.c_str());
                it.printf(5, 90, id(RB3), id(green_01), "%s", id(Zeile13).state.c_str());
                it.printf(5, 120, id(RB3), id(green_01), "%s", id(Zeile14).state.c_str());
                it.printf(5, 150, id(RB3), id(green_01), "%s", id(Zeile15).state.c_str());
                it.printf(5, 180, id(RB3), id(blue_01), "%s", id(Zeile16).state.c_str());
                it.printf(5, 210, id(RB3), id(blue_01), "%s", id(Zeile17).state.c_str());
            - id: page2
              lambda: |-
                it.strftime(160, 0, id(RB1), TextAlign::TOP_CENTER, "%X    %d.%m.%y", id(timeact).now());
                it.printf(5, 25, id(RB3), id(green_01), "%s", id(Zeile21).state.c_str());
                it.printf(5, 60, id(RB3), id(green_01), "%s", id(Zeile22).state.c_str());
                it.printf(5, 90, id(RB3), id(green_01), "%s", id(Zeile23).state.c_str());
                it.printf(5, 120, id(RB3), id(green_01), "%s", id(Zeile24).state.c_str());
                it.printf(5, 150, id(RB3), id(green_01), "%s", id(Zeile25).state.c_str());
                it.printf(5, 180, id(RB3), id(blue_01), "%s", id(Zeile26).state.c_str());
                it.printf(5, 210, id(RB3), id(blue_01), "%s", id(Zeile27).state.c_str());
      text_sensor:
        - platform: mqtt_subscribe
          name: "Zeile 1.1"
          id: Zeile11
          topic: Seite1/Zeile1
        - platform: mqtt_subscribe
          name: "Zeile 1.2"
          id: Zeile12
          topic: Seite1/Zeile2
        - platform: mqtt_subscribe
          name: "Zeile 1.3"
          id: Zeile13
          topic: Seite1/Zeile3    
        - platform: mqtt_subscribe
          name: "Zeile 1.4"
          id: Zeile14
          topic: Seite1/Zeile4    
        - platform: mqtt_subscribe
          name: "Zeile 1.5"
          id: Zeile15
          topic: Seite1/Zeile5     
        - platform: mqtt_subscribe
          name: "Zeile 1.6"
          id: Zeile16
          topic: Seite1/Zeile6   
        - platform: mqtt_subscribe
          name: "Zeile 1.7"
          id: Zeile17
          topic: Seite1/Zeile7   
      
        - platform: mqtt_subscribe
          name: "Zeile 2.1"
          id: Zeile21
          topic: Seite2/Zeile1
        - platform: mqtt_subscribe
          name: "Zeile 2.2"
          id: Zeile22
          topic: Seite2/Zeile2
        - platform: mqtt_subscribe
          name: "Zeile 2.3"
          id: Zeile23
          topic: Seite2/Zeile3    
        - platform: mqtt_subscribe
          name: "Zeile 2.4"
          id: Zeile24
          topic: Seite2/Zeile4    
        - platform: mqtt_subscribe
          name: "Zeile 2.5"
          id: Zeile25
          topic: Seite2/Zeile5     
        - platform: mqtt_subscribe
          name: "Zeile 2.6"
          id: Zeile26
          topic: Seite2/Zeile6   
        - platform: mqtt_subscribe
          name: "Zeile 2.7"
          id: Zeile27
          topic: Seite2/Zeile7           
          
      output:
        - platform: ledc
          pin: GPIO15
          id: gpio_32_backlight_pwm
          inverted: yes
          
          
      light:
        - platform: monochromatic
          output: gpio_32_backlight_pwm
          name: "ILI9341 Display Backlight"
          id: back_light
          restore_mode: ALWAYS_OFF
          on_turn_on:
          - delay: 10s
          - light.turn_off: back_light
      
      xpt2046:
        id: touchscreen
        cs_pin: GPIO14
        irq_pin: GPIO27
        update_interval: 50ms
        report_interval: 1s
        threshold: 400
        dimension_x: 240
        dimension_y: 320
        calibration_x_min: 3860
        calibration_x_max: 280
        calibration_y_min: 340
        calibration_y_max: 3860
        swap_x_y: false
        on_state:
          - lambda: |-
              ESP_LOGI("main", "args x=%d, y=%d, touched=%s", x, y, (touched ? "touch" : "release"));
              ESP_LOGI("main", "member x=%d, y=%d, touched=%d, x_raw=%d, y_raw=%d, z_raw=%d",
                  id(touchscreen).x,
                  id(touchscreen).y,
                  (int) id(touchscreen).touched,
                  id(touchscreen).x_raw,
                  id(touchscreen).y_raw,
                  id(touchscreen).z_raw
                  );
      
      binary_sensor:
        - platform: xpt2046
          xpt2046_id: touchscreen
          name: Touch1
          id: touch_key0
          x_min: 20
          x_max: 80
          y_min: 200
          y_max: 280
          on_press:
            - display.page.show_next: Display1
            - component.update: Display1
            
        - platform: xpt2046
          xpt2046_id: touchscreen
          name: Touch2
          id: touch_key2
          x_min: 90
          x_max: 140
          y_min: 100
          y_max: 160
          on_press:
            - light.turn_on: back_light
      

      Bildschirmfoto 2021-09-27 um 08.29.30.png

      posted in Tester
      P
      pboeck
    • RE: ESP32, Mi Flora, MQTT zu iOBroker

      @bernd-0 Ich habe es über den ESP home und den ESP home Adapter ohne MQTT gemacht.

      https://esphome.io/components/sensor/xiaomi_ble.html

      posted in Hardware
      P
      pboeck
    • RE: Landis Gyr E450 mittels Rj12 Schnittstelle auslesen

      @nwh Zum Verständnis: https://de.wikipedia.org/wiki/M-Bus_(Feldbus)

      posted in ioBroker Allgemein
      P
      pboeck
    • RE: [ESPHome] Rain Sensor integrieren?

      @slowman
      Hast Du auch das Komparator Modul?
      Das hat einmal einen digitalen Ausgang und einen Anlogen Ausgang.
      Welche Spannung da rauskommt ist aus dem Datenblatt leider nicht zu erkennen.
      Im Beispiel wird die Schaltung auch nur kurz mit Spannung versorgt um die Korrosion zu reduzieren.
      Datenblatt

      posted in Microcontroller
      P
      pboeck
    • RE: Test Adapter mbus 2.1.0

      @dillio Das ist ein M-Bus Master / Modbus TCP Server
      Zum IO Broker gehts nur über ModBus.
      Er stellt eine "Verbindung" zwischen den Protokollen her.

      posted in Tester
      P
      pboeck

    Latest posts made by pboeck

    • RE: Test Adapter mbus 2.1.0

      @dillio Das ist ein M-Bus Master / Modbus TCP Server
      Zum IO Broker gehts nur über ModBus.
      Er stellt eine "Verbindung" zwischen den Protokollen her.

      posted in Tester
      P
      pboeck
    • RE: Adapter: M-Bus mit Cyble V2 Sensor

      @harry423 Leider nein, ich habe keine M-Bus Geräte am IO Brocker.

      posted in ioBroker Allgemein
      P
      pboeck
    • RE: Landis Gyr E450 mittels Rj12 Schnittstelle auslesen

      @nwh Zum Verständnis: https://de.wikipedia.org/wiki/M-Bus_(Feldbus)

      posted in ioBroker Allgemein
      P
      pboeck
    • RE: Landis Gyr E450 mittels Rj12 Schnittstelle auslesen

      @paul53 Genau, das ist ein Slave.

      posted in ioBroker Allgemein
      P
      pboeck
    • RE: Landis Gyr E450 mittels Rj12 Schnittstelle auslesen

      @nwh So wie es aussieht, ist das M-Bus Slave.
      Du brauchst einen M-Bus Master USB Adapter oder M-Bus Master Pegelwandler.

      Siehe auch: https://github.com/Apollon77/ioBroker.mbus

      posted in ioBroker Allgemein
      P
      pboeck
    • RE: ESP32: GPIO Verfügbarkeit

      @wolfgangfb Es kommt auf das Board an.
      ZB.: https://cdn.shopify.com/s/files/1/1509/1638/files/ESP-32_NodeMCU_Developmentboard_Pinout.pdf?v=1609851295

      Teilweise sind GPIOs scho intern verwendet.

      posted in ioBroker Allgemein
      P
      pboeck
    • RE: ESP32, Mi Flora, MQTT zu iOBroker

      @haselchen Passwort auch im ESP eingetragen?

      posted in Hardware
      P
      pboeck
    • RE: ESP32, Mi Flora, MQTT zu iOBroker

      @bernd-0 API: Das Passwort habe ich hier eingetragen:8E7639E0-E481-4A79-8908-AD567D405B06.jpeg
      Und im ESP.
      Ist nicht unbedingt nötig, glaube ich.

      Fruchtbarkeitswert? ich habe nur Feuchte, Temperatur, Leitwert und Helligkeit.
      Was zeigt das Log in der Web Ansicht an?

      posted in Hardware
      P
      pboeck
    • RE: ESP32, Mi Flora, MQTT zu iOBroker

      @bernd-0 ESP home Adapter installieren und dann mit Hilfe der Doku:
      https://drozmotix.github.io/languages/de/Adapter/ESPHome/
      konfigurieren.

      posted in Hardware
      P
      pboeck
    • RE: ESP32, Mi Flora, MQTT zu iOBroker

      @bernd-0 Ich habe es über den ESP home und den ESP home Adapter ohne MQTT gemacht.

      https://esphome.io/components/sensor/xiaomi_ble.html

      posted in Hardware
      P
      pboeck
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo