From 3154441b6ab0fa2e0fe6c32a4f78eba37ce782d0 Mon Sep 17 00:00:00 2001 From: Pbopbo Date: Tue, 7 Apr 2026 16:25:07 +0200 Subject: [PATCH] Cleanup. --- src/scripts/blink_led.py | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100755 src/scripts/blink_led.py diff --git a/src/scripts/blink_led.py b/src/scripts/blink_led.py deleted file mode 100755 index c07ef9d..0000000 --- a/src/scripts/blink_led.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env python3 -import time -import RPi.GPIO as GPIO - -GPIO_PIN = 12 - -GPIO.setmode(GPIO.BCM) -GPIO.setup(GPIO_PIN, GPIO.OUT) - -while True: - print("toggle led ON") - GPIO.output(GPIO_PIN, GPIO.LOW) - time.sleep(2) - print("toggle led OFF") - GPIO.output(GPIO_PIN, GPIO.HIGH) - time.sleep(2) -