You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The temp probe data should be at GPIO25. I changed the config to reflect this. Changed oneWirePin from 23 to 25 in Config.h. GPIO27 gives power to the sensor so added the following to void brewpi_setup() in BrewPiLess.cpp
void brewpi_setup()
{
pinMode(27, OUTPUT);
digitalWrite(27, LOW);
pinMode(13, OUTPUT);
digitalWrite(13, LOW); // Green status Led
....
}