Advertisement
Garth0

Untitled

Dec 6th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. RGB_color(255, 0, 0); // Red
  2. delay(1000);
  3. RGB_color(0, 255, 0); // Green
  4. delay(1000);
  5. RGB_color(0, 0, 255); // Blue
  6. delay(1000);
  7. RGB_color(255, 255, 125); // Raspberry
  8. delay(1000);
  9. RGB_color(0, 255, 255); // Cyan
  10. delay(1000);
  11. RGB_color(255, 0, 255); // Magenta
  12. delay(1000);
  13. RGB_color(255, 255, 0); // Yellow
  14. delay(1000);
  15. RGB_color(255, 255, 255); // White
  16. delay(1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement