// Howdy 👋.
//
// If you are new to writing code in Flux make sure to check out our get started docs: https://docs.flux.ai/reference/introduction
//
// We also have a Flux Slack Community in case you need help: https://join.slack.com/t/fluxcommunity/shared_invite/zt-p48n941f-wzQ06kGmuFJ2HXnGYT1JkA
//
// To infinity and beyond 🚀
//Grupo fortnite, integrante Santino Virga
void setup() {
pinMode(3, OUTPUT);//luz roja
pinMode(5, OUTPUT);//luz verde
pinMode(6, OUTPUT);//luz azul
Serial.begin(9600);
}//declaro cada pin como salida
void loop() {
analogWrite(3, 0);
analogWrite(5, 255);
analogWrite(6, 0);
delay(2000);//color verde por 2 segundos