Debut exercice1

This commit is contained in:
Samuel 2026-01-04 15:05:24 +01:00
parent b9b653e61f
commit 585d594353

10
main.c
View File

@ -11,16 +11,8 @@ void main(void)
{
stdio_init_all();
gpio_set_function(25, GPIO_FUNC_PWM);
pwm_set_enabled(4, true);
pwm_set_chan_level(4, PWM_CHAN_B, 30000);
gpio_init(25);
while(1){
printf("Exemple\n");
sleep_ms(1000);
}
}