Are there any individuals on this site (or other resources) that would be willing to build an automation in NodeRed for me for the right price?
I’ve tried a number of times to build what I’m looking for and I’m at a loss. Plus I really just want it done, so I figure I’d rather just pay someone if at all possible.
I’m not a node-red expert - still learning it myself. But tell us what you are trying to do and we may be able to point you in the right direction (learning is half the fun) or we may be able to give you some examples.
You have a lot going on… There is potential to simplify some of the flows (like using the trigger state node instead of polling and checking various states); but first, a few questions:
What parts of the flows are working / not working (light checks/control, humidity check/control, etc.)
The existing flows that are completed work, so no issue there.
I’m monitoring and controlling VPD by controlling humidity. All I want is a simple flow to trigger a notification when VPD is above or below the setpoint for longer than “x” amount of time.
The problem I run into is the actual VPD is constantly oscillating above or below the target, and I’m not sure how to check the state for continuously being above or below.
If you replace your VPD Notification polling node with an events: state node and check to see if sensor.t1vpdc is < $entities(“input_number.tent_1_vpd_target”).state for n minutes, will that work?