From 883bf63de9b0ad2e3d125c49ab51f7e2e4736ae8 Mon Sep 17 00:00:00 2001 From: ZodiusInfuser Date: Thu, 1 Aug 2024 23:43:39 +0100 Subject: [PATCH] Add release version --- picofx/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/picofx/__init__.py b/picofx/__init__.py index 9f11fe1..2751695 100644 --- a/picofx/__init__.py +++ b/picofx/__init__.py @@ -5,6 +5,9 @@ from machine import Pin, PWM, Timer +PICOFX_VERSION = "1.0.0" + + def rgb_from_hsv(h, s, v): if s == 0.0: return v, v, v