digitalRead(RaiseButton);
....
if (RaiseButton == HIGH)
Read the pin and chuck away the value.
Then compare the pin number to HIGH.
Don't do it.
digitalRead(RaiseButton);
....
if (RaiseButton == HIGH)
Read the pin and chuck away the value.
Then compare the pin number to HIGH.
Don't do it.