Navigation

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

    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

    • Profile
    • Following 2
    • Followers 0
    • Topics 5
    • Posts 16
    • Best 0
    • Groups 1

    Matthias 4

    @Matthias 4

    Starter

    0
    Reputation
    8
    Profile views
    16
    Posts
    0
    Followers
    2
    Following
    Joined Last Online

    Matthias 4 Follow
    Starter

    Latest posts made by Matthias 4

    • RE: [gelöst] VIS echarts nicht gezeigt in VIS app

      @matthias-i

      Hallo,
      Ich habe das gleiche Problem und habe auch die Sachen die du umgesetzt hast bei mir ausprobiert. Dies führt ebenfalls zu den gleichen Ergebnisse.
      Mir ist jetzt auch in diesem Chat die Lösung nicht eindeutig, da das was beschrieben ist, nicht funktioniert.
      Kann hier jemand unterstützen?
      Funktioniert denn die Kombination echart App?

      Grüße

      posted in Visualisierung
      Matthias 4
      Matthias 4
    • Sonoff Dual R3 --- ESPHome ---Rolladensteuerung

      Hallo,
      ich versuche mich derzeit an einer Lösung zur Rolladensteuerung mittels Sonoff Dual R3 mit ESPHome geflasht.
      Es funktioniert alles soweit gut.

      Ich bekomme in der Web Oberfläche die Taster angezeigt und kann Sie auch bedienen.

      a0b4dfa7-01a1-4212-a4a8-9dce6c07bc21-image.png

      Über das Objekt im IOBroker habe ich aber keinen Zugang zu dem Button, beziehungsweise kann ich hier den Wert nicht vorgeben zwecks Steuerung mittels VIS.

      851d393e-d241-4724-98dd-d584ac366a9d-image.png

      Ebenfalls wird die Position nicht an den Broker geschrieben. Diese erscheint nur in den Logs des ESP

      5ff7d94c-83d1-4353-8abe-f6b9e46024d5-image.png

      Hat jemand eine Idee wo hier mein Fehler liegt?

      esphome:
      name: rsw-5
      friendly_name: Rolladenaktor 5
      platform: ESP32
      board: esp32dev

      Enable logging

      logger:
      baud_rate: 0

      Enable Home Assistant API

      api:
      password: "R/jCGfTwngrzx1vMma65UtlweV22kLV6K3uQ+MEsEDg="

      ota:
      web_server:
      port: 80

      wifi:
      ssid: !secret wifi_ssid
      password: !secret wifi_password

      manual IP

      manual_ip:
      static_ip: 192.168.178.246
      gateway: 192.168.178.1
      subnet: 255.255.255.0

      ap:
      password: !secret wifi_ap_password

      captive_portal:

      binary_sensor:

      • platform: gpio
        pin:
        number: GPIO10
        inverted: true
        id: button
        on_press:
        then:
        # logic for cycling through movements: open->stop->close->stop->...
        - lambda: |
        if (id(my_cover).current_operation == COVER_OPERATION_IDLE) {
        // Cover is idle, check current state and either open or close cover.
        if (id(my_cover).is_fully_closed()) {
        id(my_cover).open();
        } else {
        id(my_cover).close();
        }
        } else {
        // Cover is opening/closing. Stop it.
        id(my_cover).stop();
        }

      switch:

      • platform: gpio
        pin: GPIO27
        interlock: &interlock [open_cover, close_cover]
        id: open_cover
      • platform: gpio
        pin: GPIO14
        interlock: *interlock
        id: close_cover

      cover:

      • platform: time_based
        name: "Cover"
        id: my_cover
        open_action:
        • switch.turn_on: open_cover
          open_duration: 60s
          close_action:
        • switch.turn_on: close_cover
          close_duration: 60s
          stop_action:
        • switch.turn_off: open_cover
        • switch.turn_off: close_cover

      status_led:
      pin:
      number: GPIO13
      inverted: true

      posted in Einsteigerfragen
      Matthias 4
      Matthias 4
    • RE: gelöst! ESPHome Einbindung Helligkeitssensor LM393

      @liv-in-sky Danke für den Hinweis. Das hatte ich bereits probiert. Hat auch nicht funktioniert. Ich habe mich jetzt für BH1750 Sensoren entschieden. Diese funktionieren sehr gut. Nochmals Danke

      posted in Einbindung von Geräten
      Matthias 4
      Matthias 4
    • gelöst! ESPHome Einbindung Helligkeitssensor LM393

      Hallo,

      ich möchte gern einen LM393 Helligkeitssensor in ESP Home einbinden.

      Ich habe allerdings meinerseits noch Verständnis fragen zum ADC Eingang des Wemos D1. Gemessen wird der Pegel von 0-3,2V. Der LM393 hat einen Arbeitsbereich von 2,8-3,2. Der unten aufgeführte Lambda Filter verrechnet den Wert und stellt in von 0-255 dar. Leider funktioniert das nicht. Ich kann den Arbeitsbereich auch nicht sauber auf den Spannungsbereich begrenzen, dann kommt leider nur murks raus. Ich habe ebenfalls versucht ihn als Photoresistor auszulesen. Hat auch keine plausiblen Werte gegeben.

      • platform: adc
        pin: A0
        name: "LUX Sensor"
        unit_of_measurement: lux
        update_interval: 10s
        filters:
        • lambda: |-
          auto r = map((x * 3.3 / 10000.0) * 2000000.0, 0, 786, 255, 0);
          if (r > 0) return r;
          return 0;

      Hat jemand eine Idee wie man sowas am besten ausliest?

      Grüße

      posted in Einbindung von Geräten
      Matthias 4
      Matthias 4
    • RE: ESP HOME --- keine Installation möglich

      @wendy2702 Ich hab alles neu aufgesetzt,.. jetzt geht es.. Danke 🙂

      posted in Error/Bug
      Matthias 4
      Matthias 4
    • RE: ESP HOME --- keine Installation möglich

      @wendy2702 sagte in ESP HOME --- keine Installation möglich:

      iob diag

      OK.. wieder was dazugelernt,.. Danke 🙂

      ======================= SUMMARY =======================
      		     v.2023-01-02
      
      
      Operatingsystem: 	Debian GNU/Linux 10 (buster)
      Installation: 		Native
      Timezone: 		Europe/Berlin
      User-ID: 		1000
      X-Server: 		true
      Boot Target: 		graphical.target
      
      Pending OS-Updates: 	28
      
      Nodejs-Installation: 	/usr/bin/nodejs 	v16.19.0
      			/usr/bin/node 		v16.19.0
      			/usr/bin/npm 		8.19.3
      			/usr/bin/npx 		8.19.3
      
      ioBroker Core: 		js-controller 		4.0.24
      			admin 			6.3.5
      
      ioBroker Status: 	iobroker is running on this host.
      
      
      Objects type: jsonl
      States  type: jsonl
      
      Status admin:
      + system.adapter.admin.0                  : admin                 : raspberrypi                              -  enabled, port: 1435, bind: 0.0.0.0, run as: admin
      
      Pending iob updates: 	8
      
      Active repo(s): beta
      
      Objects: 		2530
      States: 		2270
      
      Size of iob-Database:
      
      44M	/opt/iobroker/iobroker-data/objects.jsonl
      3.9M	/opt/iobroker/iobroker-data/objects.json.migrated
      3.9M	/opt/iobroker/iobroker-data/objects.json.bak.migrated
      0	/opt/iobroker/iobroker-data/objects.json.broken
      8.1M	/opt/iobroker/iobroker-data/states.jsonl
      460K	/opt/iobroker/iobroker-data/states.json.migrated
      460K	/opt/iobroker/iobroker-data/states.json.bak.migrated
      0	/opt/iobroker/iobroker-data/states.json.broken
      
      
      =================== END OF SUMMARY ====================
      
      posted in Error/Bug
      Matthias 4
      Matthias 4
    • RE: ESP HOME --- keine Installation möglich

      @wendy2702 : Das Angeführte ist das Log des ESP Home Dashboard - oder gibt es noch ein anderes?

      posted in Error/Bug
      Matthias 4
      Matthias 4
    • RE: ESP HOME --- keine Installation möglich

      @ahnungsbefreit: Hab ich grad gemacht - brachte keinen Erfolg

      posted in Error/Bug
      Matthias 4
      Matthias 4
    • ESP HOME --- keine Installation möglich
      Systemdata Bitte Ausfüllen
      Hardwaresystem: Pi4
      Arbeitsspeicher: 4GB
      Festplattenart: SD-Karte
      Betriebssystem: Ubuntu
      Node-Version: 10.x.x
      Nodejs-Version: 10.x.x
      NPM-Version: 6.x.x
      Installationsart: Manuell
      Image genutzt: Ja

      Hallo,

      nach dem Update auf die BETA ( in der Freigebenden Version ging leider nichts mehr) bekomme ich keine Daten mehr auf den ESP.

      Fehlermeldung:

      INFO Reading configuration /opt/iobroker/iobroker-data/esphome.0/esphome-web-a19cfd.yaml...
      INFO Generating C++ source...
      INFO Compiling app...
      Traceback (most recent call last):
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/bin/esphome", line 8, in <module>
          sys.exit(main())
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/esphome/__main__.py", line 825, in main
          return run_esphome(sys.argv)
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/esphome/__main__.py", line 812, in run_esphome
          rc = POST_CONFIG_ACTIONS[args.command](args, config)
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/esphome/__main__.py", line 369, in command_run
          exit_code = compile_program(args, config)
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/esphome/__main__.py", line 186, in compile_program
          rc = platformio_api.run_compile(config, CORE.verbose)
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/esphome/platformio_api.py", line 106, in run_compile
          return run_platformio_cli_run(config, verbose)
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/esphome/platformio_api.py", line 102, in run_platformio_cli_run
          return run_platformio_cli(*command, **kwargs)
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/esphome/platformio_api.py", line 93, in run_platformio_cli
          patch_structhash()
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/esphome/platformio_api.py", line 23, in patch_structhash
          from platformio.commands.run import helpers, command
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/platformio/commands/run/command.py", line 25, in <module>
          from platformio.commands.device.command import device_monitor as cmd_device_monitor
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/platformio/commands/device/command.py", line 24, in <module>
          from platformio.commands.device import helpers as device_helpers
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/platformio/commands/device/helpers.py", line 23, in <module>
          from platformio.package.manager.tool import ToolPackageManager
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/platformio/package/manager/tool.py", line 15, in <module>
          from platformio.package.manager.base import BasePackageManager
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/platformio/package/manager/base.py", line 26, in <module>
          from platformio.package.manager._download import PackageManagerDownloadMixin
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/platformio/package/manager/_download.py", line 21, in <module>
          from platformio.package.download import FileDownloader
        File "/opt/iobroker/node_modules/iobroker.esphome/python_modules/lib/python3.7/site-packages/platformio/package/download.py", line 22, in <module>
          import requests
        File "/usr/lib/python3/dist-packages/requests/__init__.py", line 95, in <module>
          from urllib3.contrib import pyopenssl
        File "/usr/lib/python3/dist-packages/urllib3/contrib/pyopenssl.py", line 46, in <module>
          import OpenSSL.SSL
        File "/usr/lib/python3/dist-packages/OpenSSL/__init__.py", line 8, in <module>
          from OpenSSL import crypto, SSL
        File "/usr/lib/python3/dist-packages/OpenSSL/crypto.py", line 1553, in <module>
          class X509StoreFlags(object):
        File "/usr/lib/python3/dist-packages/OpenSSL/crypto.py", line 1573, in X509StoreFlags
          CB_ISSUER_CHECK = _lib.X509_V_FLAG_CB_ISSUER_CHECK
      AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'
      
      

      Ich hoffe es Kann mir jemand helfen.

      Grüße

      MOD EDIT: LOG IN CODE TAGS </> GESETZT

      posted in Error/Bug
      Matthias 4
      Matthias 4
    • Weihnachtsangebot VIS Offline Lizenz???

      Hallo,
      wird es dieses Jahr ein Weihnachtsangebot für eine Offline Lizenz wie in den letzten Jahren geben?

      Grüße

      posted in Visualisierung
      Matthias 4
      Matthias 4
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo