X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/0d243252f0fb3a3e200df404884e3cc7d872ee13..fd2b8d529d684746eff57775cf2b8ec246b9a096:/displayio/_helpers.py diff --git a/displayio/_helpers.py b/displayio/_helpers.py index cbff9f4..39e1c11 100644 --- a/displayio/_helpers.py +++ b/displayio/_helpers.py @@ -20,10 +20,12 @@ displayio for Blinka __version__ = "0.0.0+auto.0" __repo__ = "https://github.com/adafruit/Adafruit_Blinka_displayio.git" + def clamp(value, min_value, max_value): """Clamp a value between a minimum and maximum value""" return max(min(max_value, value), min_value) + def bswap16(value): """Swap the bytes in a 16 bit value""" - return (value & 0xFF00) >> 8 | (value & 0x00FF) << 8 \ No newline at end of file + return (value & 0xFF00) >> 8 | (value & 0x00FF) << 8