#!/bin/sh
#
# SPDX-License-Identifier: MIT
#

while true; do
  # LED on
  gpioset -l -m time -s 1 gpiochip0 29=1
  # LED off
  gpioset -l -m time -s 1 gpiochip0 29=0
done