mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-04-02 01:20:17 +02:00
18 lines
268 B
C
18 lines
268 B
C
#include <stdio.h>
|
|
#include "pico/stdlib.h"
|
|
|
|
int main(void) {
|
|
uint8_t age = 0;
|
|
int8_t range = 0;
|
|
|
|
age = 43;
|
|
range = -42;
|
|
|
|
stdio_init_all();
|
|
|
|
while (true) {
|
|
printf("age: %d\r\n", age);
|
|
printf("range: %d\r\n", range);
|
|
}
|
|
}
|