Skip to content

Instantly share code, notes, and snippets.

@MattGrayYes
Created January 9, 2023 13:43
Show Gist options
  • Save MattGrayYes/eb753ae20b611b3c57aeaf933f128aeb to your computer and use it in GitHub Desktop.
Save MattGrayYes/eb753ae20b611b3c57aeaf933f128aeb to your computer and use it in GitHub Desktop.
Pimoroni Hyperpixel Brightness Adjuster
#!/bin/bash
# Pimoroni Hyperpixel Brightness Adjuster
# Tested on Hyperpixel Round with Raspberry Pi Zero W https://shop.pimoroni.com/products/hyperpixel-round?variant=39381081882707
#
# Matt Gray | mattg.co.uk | @MattGrayYes
# if we've got one argument
if [ $# -eq 1 ];
then
# if the argument is an integer
if [[ $1 == ?(-)+([0-9]) ]];
then
b=$1
# if the integer is between 0-100
if [ "$b" -le 100 ] && [ "$b" -ge 0 ];
then
echo "Setting Hyperpixel brightness to $b percent"
# Convert percentage to 0-1023
let b=$((b*1023/100))
# Turn on PWM to emable dimming, set value.
gpio -g mode 19 pwm
gpio -g pwm 19 $b
else
echo "Number not between 0 and 100."
echo "Call this script with a brightness percentage <0-100>"
echo "$0 50"
exit
fi
else
echo "Not a number."
echo "Call this script with a brightness percentage <0-100>"
echo "$0 50"
fi
else
echo "Pimoroni Hyperpixel Brightness Adjuster"
echo "Call this script with a brightness percentage <0-100>"
echo "$0 50"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment