Example #1
0
void VeritazzExtra::begin()
{
	boot();

	if (buttonsState() & UP_BUTTON)
		doNothing();

	bootLogo();
}
Example #2
0
bool MyArduboy::nextFrame(void)
{
    bool ret = ARDUBOY_LIB_CLASS::nextFrame();
    if (ret) {
        lastButtonState = currentButtonState;
        currentButtonState = buttonsState();
    }
    return ret;
}
Example #3
0
void VeritazzExtra::begin()
{
	WDTCSR |= _BV(WDIE);

	boot();

	if (buttonsState() & UP_BUTTON)
		doNothing();

	bootLogo();
}