5 Quick Tips for Node-RED

Поділитися
Вставка
  • Опубліковано 22 жов 2024

КОМЕНТАРІ • 11

  • @BryanNystrom
    @BryanNystrom Рік тому +3

    Tip: Junction Node. Instead of deleting and re-drawing lines to a junction node like was done in the video, multi-select all the lines you want connected via a junction (by control-clicking them), right click mouse and select "Insert->Junction". Saves you from having to delete and re-add lines.

  • @technithusiast
    @technithusiast Рік тому

    Very informative. I didn’t know the delay node could debounce messages. I installed a debounce package but now I can use the native delay mode instead!

    • @lets-automate
      @lets-automate  Рік тому +1

      Great to hear 😀
      I actually started watching your channel a couple of months ago, so nice to see you found mine! Keep up the great work.

  • @jimduke5545
    @jimduke5545 10 місяців тому

    Knowing/using node-red allows the user to work with other APIs (such as Victron GX and VRM) either in conjunction or independently of Home assistant. It also allows one to build dashboards for monitoring or, interacting with the flow.
    As you say, the there are advantages and disadvantages.

  • @BryanNystrom
    @BryanNystrom Рік тому +1

    Another use for the delay node: Use as a toggle. A simple example: Upon an event happening, you need to send a value of 1 to a node, followed by a 0 after a couple of seconds. So, from the node that triggers the action, send the 1 directly to the target node and the delay node. After the delay time, send the output from the delay to a change node (change the value from 1 to 0) and then into the same target node.

    • @lets-automate
      @lets-automate  Рік тому

      Yeah there's a lot of uses! I'll probably do some future videos on other nodes and Use Cases like that.

    • @technithusiast
      @technithusiast Рік тому

      This is crazy helpful!! This can help me simplify a lot of my complicated automations that rely on timeouts

  • @erikwagen1480
    @erikwagen1480 Рік тому

    Thanks for a great video! This will help me make more efficient flows :)

  • @piperjohn_3
    @piperjohn_3 5 місяців тому

    It wasn't obvious to me as js config file newb that enabled:true was necessary to enable dark mode. That setting appeared to me to only be associated with "projects" rather than "editorTheme". And the enabled:true setting didn't seem to be mentioned in the official documentation. Thanks for resolving my annoying dark mode issue!

    • @lets-automate
      @lets-automate  5 місяців тому

      I later realised that it does seem to work without the project setting set to true. But it was a while ago now so I can't remember why I felt I needed to add the project bit!

    • @piperjohn_3
      @piperjohn_3 5 місяців тому +1

      @@lets-automate Ahh, you're right. I changed it back to false and dark theme still works (and gets rid of the annoying project intro splash on startup). It was just a coincidence dark theme started working, I guess.