moving config to default_config and adding in 3d models for the macropad case itself

This commit is contained in:
Lucas Oskorep
2022-09-15 17:03:02 -04:00
parent 93e3e1eadc
commit bc7a7c0168
15 changed files with 41 additions and 111 deletions
+2 -2
View File
@@ -1,3 +1,3 @@
from .light_patterns import *
from .static_lighting import *
from .sound_patterns import *
from .helper_funcs import *
from .helpers import *
@@ -2,7 +2,6 @@ def clamp(num, min_value, max_value):
return max(min(num, max_value), min_value)
def rgb_from_int(rgb):
blue = rgb & 255
green = (rgb >> 8) & 255