24 lines
383 B
C++
24 lines
383 B
C++
|
#include "pico/stdlib.h"
|
||
|
|
||
|
#include "breakout_encoder.hpp"
|
||
|
|
||
|
using namespace pimoroni;
|
||
|
|
||
|
BreakoutEncoder enc;
|
||
|
|
||
|
int main() {
|
||
|
gpio_init(PICO_DEFAULT_LED_PIN);
|
||
|
gpio_set_dir(PICO_DEFAULT_LED_PIN, GPIO_OUT);
|
||
|
|
||
|
enc.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;
|
||
|
}
|