]>
git.scottworley.com Git - tattlekey/blob - client/tattlekey.c
2 * Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
4 * SPDX-License-Identifier: BSD-3-Clause
7 #include "pico/stdlib.h"
10 #ifndef PICO_DEFAULT_LED_PIN
11 #warning blink example requires a board with a regular LED
13 const uint LED_PIN
= PICO_DEFAULT_LED_PIN
;
15 gpio_set_dir(LED_PIN
, GPIO_OUT
);