| 85 | } |
| 86 | |
| 87 | Color Color::fromUint32(uint32_t v) { |
| 88 | Color c; |
| 89 | c.setAlpha(((uint8_t*)(&v))[3]); |
| 90 | c.setRed(((uint8_t*)(&v))[2]); |
| 91 | c.setGreen(((uint8_t*)(&v))[1]); |
| 92 | c.setBlue(((uint8_t*)(&v))[0]); |
| 93 | return c; |
| 94 | } |
| 95 | |
| 96 | Color Color::temperature(float temp) { |
| 97 | // Magic numbers ahoy! |