MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. visionmaster
    3. Best
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    V
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 9
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: ShellyPV mit Shelly 2.5

      @visionmaster
      Hier zur Info:

      Ich habe :

      else if (data.lights) {
      const light = data.lights[0]; // Assume single channel for RGB device
      isOn = light?.ison || false;
      power = light?.power || null;
      }

      durch:

      else if (data.lights) {
      const light = data.lights[0]; // Assume single channel for RGB device
      isOn = light?.ison || false;
      power = data.meters ? data.meters[0].power : null;
      }

      ersetzt. Jetzt zeigt er alles richtig an. :)

      posted in Utilities
      V
      visionmaster
    • 1 / 1