Advice on creating a safe monitor

groundfungus:
ESP8266-07 variant has an external antenna. I have used an ESP with a standalone Mega 328 for a weather station (quite similar to what you want). The 328 is used , as a peripheral of the ESP, to interface with the sensors and I use a software serial connection to the ESP to send the data to the ESP and the ESP runs a server. I recommend that you get an Uno and some of the sensors that you will use. Break the project into small parts, write sketches for each piece and add the pieces together as you develop experience.

Ah, thanks for the heads-up on the -07 variant. I also like the idea of using a micro as a slave to the ESP for managing sensors, instead of the other way 'round.