how does one know what vpd your garden is @? they have a meter for that?
what is a good VPD controller ? not the highest priced , limited funds
I build these little "environment sensors" out of BME280 temp,humidity,pressure sensors and esp8266 based dev boards. The dev boards are flashed with a firmware called Tasmota which is huge in the home automation scene. The firmware knows how to talk to the sensor and the sensor values get streamed on your network via MQTT. The sensors are pricey but they are the most accurate on the market, Tasmota works with other sensors. In all, you can make one of these for $10-15. You just need to solder 4 wires between the sensor and dev board, no extra components are needed. The dev board is power with a usb 5v charger. First boot after flashing Tasmota it broadcasts an AP which you connect to on your phone and the configure it to attach to your normal wifi.
VPD can be calculated pretty easy:
air_temp = BME280.Temperature
leaf_temp = air_temp - 2
rh = BME280.Humidity
asvp = 610.78 * 2.718281828459045 ** ( air_temp / ( air_temp + 238.3 ) * 17.2694) / 1000
lsvp = 610.78 * 2.718281828459045 ** ( leaf_temp / ( leaf_temp + 238.3 ) * 17.2694) / 1000
lvpd = lsvp - ( asvp * rh / 100 )
My "VPD controller" is a server running Home Assistant. All my lights and fans are on smart switches that are available within Home Assistant and I have automation rules that say things like: If the lights are on in tent 1 and the VPD is > 1.2 turn fan duct fan on. That pulls in air with lower RH and the VPD comes down. If you have humidifiers and dehumidifiers and heaters you can set up some pretty complicated rules for which "strategy" you to use to manipulate the VPD.