#if defined(WISBLOCK_BASE_5005) || defined(WISBLOCK_BASE_5005_O)
uint8_t ledPin = LED_BLUE;
uint8_t inputPin = WB_IO1;
#else
#warning Please set a right pin refer to the documentation
uint8_t ledPin = 0xFF;
uint8_t inputPin = 0xFF;
#endif
int buttonState;
int blinkThread(
struct rt *
rt) {
for (;;) {
if (buttonState ==
HIGH) {
} else {
}
}
}
int buttonThread(
struct rt *
rt) {
for (;;) {
}
}
void setup()
{
Serial.
println(
"------------------------------------------------------");
}
void loop()
{
}