added Chapter 8

This commit is contained in:
Kevin Thomas
2023-11-15 14:43:39 -05:00
parent 3a30f182e2
commit d4503be7cb
8 changed files with 321 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include <stdio.h>
#include "pico/stdlib.h"
#include "pico/cyw43_arch.h"
int main(void)
{
uint8_t age;
stdio_init_all();
while (true)
{
printf("age: %d\r\n", age);
}
}