Ok so I specified the address for the temp sensor and now it just reads 0. So I went back to the onewire example and it reads fine. I can't figure out what is going on?
If you wrote correct address of your sensor then check also other definitions in config.h
first uncomment this
#define _TEMP //comment out if no temp probe
then regarding of your use this:
#define CELSIUS //uncomment if using celsius unit
And in your case use also 1 here
#define MAXTEMP 1 //number of temp sensors, up to 3 max, over 3 not recommended
if you use only one sensor you should wrote your sensor id here:
#define TEMPDEF { {"AqTemp",{0x10, 0x1E, 0x63, 0xBF, 0x00, 0x08, 0x00, 0x91}} }
and don't forget to change value here if you want that default settings of your controller will be refreshed at next reset
#define EEPROMSIG 0xA1 //change this every time you want the eeprom defaults to change
This value change to 0xA2 and next time back.
So after you set all this correctly then try!