24 lines
389 B
C++
24 lines
389 B
C++
#include "pico/stdlib.h"
|
|
|
|
#include "breakout_ioexpander.hpp"
|
|
|
|
using namespace pimoroni;
|
|
|
|
BreakoutIOExpander ioe;
|
|
|
|
int main() {
|
|
gpio_init(PICO_DEFAULT_LED_PIN);
|
|
gpio_set_dir(PICO_DEFAULT_LED_PIN, GPIO_OUT);
|
|
|
|
ioe.init();
|
|
|
|
while(true) {
|
|
gpio_put(PICO_DEFAULT_LED_PIN, true);
|
|
sleep_ms(1000);
|
|
gpio_put(PICO_DEFAULT_LED_PIN, false);
|
|
sleep_ms(1000);
|
|
}
|
|
|
|
return 0;
|
|
}
|