Update main.c

add missing space
This commit is contained in:
Vassilis Panagiotopoulos 2020-01-01 03:24:52 +02:00 committed by GitHub
parent c35ed75a33
commit 74e2db9072
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ static void color_wheel(uint8_t WheelPos) {
}
else {
WheelPos -= 170;
r =WheelPos * 3;
r = WheelPos * 3;
g = 255 - WheelPos * 3;
b = 0;
}