Spaces:
Sleeping
Sleeping
jk
commited on
Commit
•
b52c5d9
1
Parent(s):
4649d6b
Update RGB value increment in increase_rgb_value function
Browse files- simulator.py +3 -3
- tmp/combined_bitmap.bmp +0 -0
- tmp/font.bmp +0 -0
- tmp/simulated_bitmap.bmp +0 -0
- todo.md +3 -0
simulator.py
CHANGED
@@ -22,9 +22,9 @@ def increase_rgb_value(color):
|
|
22 |
r, g, b = color
|
23 |
if r == 0 and g == 0 and b == 0:
|
24 |
return r, g, b
|
25 |
-
r +=
|
26 |
-
g +=
|
27 |
-
b +=
|
28 |
return r, g, b
|
29 |
|
30 |
|
|
|
22 |
r, g, b = color
|
23 |
if r == 0 and g == 0 and b == 0:
|
24 |
return r, g, b
|
25 |
+
r += 100
|
26 |
+
g += 100
|
27 |
+
b += 100
|
28 |
return r, g, b
|
29 |
|
30 |
|
tmp/combined_bitmap.bmp
CHANGED
tmp/font.bmp
CHANGED
tmp/simulated_bitmap.bmp
CHANGED
todo.md
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
- Farben heller
|
2 |
+
- Datenamen anpassen
|
3 |
+
- Mehrere anzeigen und am besten auch mehrere hochladen
|