Telecommande_2024/main.c

17 lines
238 B
C
Raw Normal View History

2023-10-22 16:48:14 +00:00
/*****
* Copyright (c) 2023 - Poivron Robotique
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "pico/stdlib.h"
#include <stdio.h>
void main(void)
{
stdio_init_all();
while(1){
printf("Exemple\n");
sleep_ms(1000);
}
}