Welcome to EnviroDIY, a community for do-it-yourself environmental science and monitoring. EnviroDIY is part of WikiWatershed, a web toolkit designed to help citizens, conservation practitioners, municipal decision-makers, researchers, educators, and students advance knowledge and stewardship of fresh water. New to EnviroDIY? Start here

Reply To: Mayfly v1.1 technical questions forum thread

Home Forums Mayfly Data Logger Mayfly v1.1 technical questions forum thread Reply To: Mayfly v1.1 technical questions forum thread

#17691
Jim Moore
Participant

    @shannon I am setting up a new sensor station using the hydros 21 (due in tommorow) but I am not using the turbidity sensor.  I deleted that section of the code but I wanted to add the humidity sensor.  What do I need to put in the variable list?  Here is what I have:

    Variable* variableList[] = {
    new MeterHydros21_Cond(&hydros),
    new MeterHydros21_Depth(&hydros),
    new MeterHydros21_Temp(&hydros),
    new MaximDS3231_Temp(&ds3231),
    new ProcessorStats_Battery(&mcuBoard),
    new ProcessorStats_Battery(&mcuBoard), //dummy var as place holder for humidity
    // new SensirionSHT4x_Humidity(), //use “humidity” variable; get error
    new Modem_SignalPercent(&modem),
    };

    The modem is communicating with the new sensor site ok

    What else am I missing?

    Thanks