Microcontroller › AVR › water level controller › And in the loops you using”
August 4, 2011 at 10:38 am
#6574
dagakshay
Participant
And in the loops you using
”
if (adcout<00001010)
{
while (adcout<=00101100)
{
“
is that integer value???
if you are looking for binary value you must write 0b10101010 as same as 0xAA;
let me know till where you have reached