-void one_blink(int duration) {
- cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, 1);
- sleep_ms(duration);
- cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, 0);
- sleep_ms(duration);
-}
-
-void signal(int count, int duration) {
- for (int i = 0; i < count; i++)
- one_blink(duration);
- sleep_ms(1000);
-}