From 43576de6274fb7530a9552bf58405289a8c8df6d Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Fri, 15 Jul 2022 14:30:55 -0400 Subject: [PATCH] added autobar file --- autobar.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 autobar.c diff --git a/autobar.c b/autobar.c new file mode 100644 index 0000000..cc6e7ec --- /dev/null +++ b/autobar.c @@ -0,0 +1,21 @@ +// AutoBar +// Automatic bartender running on the Raspberry Pi Pico/W +// +// Copyright 2022 Wyatt Miller, Avery Miller +// Licensed by the Mozilla Public License v2 + +#include "pico/stdlib.h" + +void set_and_sleep(int pin, bool state, int sleep_duration); + +int main() { + const uint LED_PIN = PICO_DEFAULT_LED_PIN; + gpio_init(LED_PIN); + gpio_set_dir(LED_PIN, GPIO_OUT); + while (true) { + gpio_put(LED_PIN, 1); + sleep_ms(250); + gpio_put(LED_PIN, 0); + sleep_ms(250); + } +}