void loop()
{
boolean PB = digitalRead(PushButtonPin);
if (PB)
{
if (PinOutput == LOW)
routineA();
else
routineB();
}
}
void loop()
{
boolean PB = digitalRead(PushButtonPin);
if (PB)
{
if (PinOutput == LOW)
routineA();
else
routineB();
}
}