Me and a friend trying to create a project which needs to monitor things like moisture, temperature in greenhouse and fiels for monitoring condition and also water the crops accordingly and if possible automate submersible pumps on cultivating ground over 4.2 Acres (182952 Sq Foot). Most of the sensors needs to be powered by battery and wireless monitoring.
I've done few small projects but this is quite big not sure will be able to do it with Arduino's & Raspberry pi. How do you power, control and manage this many senors? What's your views on this is this seems doable?
RPi and ESP32's. The RPi can run MQTT Broker (server) to pass data back and forth or all around. The ESP32's can run PubSubClient. You can write Python script, or C++ code or use Node-Red on the RPi, as a communications handler. Heck, once the data is at the RPi you can, as I do, send it to your website or make changes to settings, on the web site, read the changes on the RPi and send them to the proper ESP32 for processing.
Start with a couple of sensors, learn how to use them, and work your way up. Cheap soil moisture sensors are notoriously unreliable, as hundreds of posts on this forum testify.
Most of the sensors needs to be powered by battery
RPi and ESP32's. The RPi can run MQTT Broker (server) to pass data back and forth or all around. The ESP32's can run PubSubClient. You can write Python script, or C++ code or use Node-Red on the RPi, as a communications handler. Heck, once the data is at the RPi you can, as I do, send it to your website or make changes to settings, on the web site, read the changes on the RPi and send them to the proper ESP32 for processing.
The ESP32's can be run off solar/battery.
That would be nice, but I wonder whether the distances would be too long for wifi, especially if the land parcel isn't a convenient shape.
It took me a few years in spare time but I did it with Arduino. I have a mobile app with a fully automated LoRaWAN garden.
Scroll down to LoRaWAN gardens. You’ve got a lot of hurdles ahead of you. Your best bet is to use as much as you can to stitch a solution together. I built all of mine from scratch, but there wasn’t as much available a few years ago.
WiFi and ESP32 will chew through battery depending on how often you’re sending/receiving data. LoRa works very well, but WiFi is certainly easier.