One more thing, I noticed that your basically maxing out the number of inputs on the Arduino, which I do not think will be a problem due to all of the optimizations my son has done in the ST_Anything library to conserve RAM. However, we did have a limit on the number of sensors one could have in a sketch, which was set to 10. Your application needs 14, so you’ll need to edit a file within the ST_Anything library, called Constants.h.
Please change the following line of code within Constants.h to look like:
//Maximum number of SENSOR objects
static const byte MAX_SENSOR_COUNT = 14; //Used to limit the number of sensor devices allowed. Be careful on Arduino UNO due to 2K SRAM limitation