14 lines
198 B
C++
14 lines
198 B
C++
|
#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);
|
||
|
}
|
||
|
}
|