Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bool ligado = false;
- //------------------------------------------------------
- void acione(bool *luz)
- {
- *luz = !*luz;
- }
- //------------------------------------------------------
- void setup()
- {
- acione(&ligado);
- Serial.print(ligado); // <== aqui ela teria de mostrar true, mas não sei como
- // mudar o valor implicitamente na função acione
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement