gbmanager/gbmanager.cpp

14 lines
198 B
C++
Raw Normal View History

2022-05-30 14:10:48 +02:00
#include <iostream>
#include "pico/stdlib.h"
int main()
{
stdio_init_all();
while (true) {
std::cout << "Hello, world!" << std::endl;
//TODO: Read temperature
sleep_ms(750);
}
}