Posts by Rodrigo do Amaral Souza • 1 point
3 posts
-
0
votes2
answers71
viewsA: What’s this Arduino code doing?
If the sensor reading returns any information it arrow the variable speed1 with "front" and speedv1 with 0 if nothing returns, the variable speedv1 gets the value "back" and speed1 also with 0…
-
0
votes2
answers647
viewsA: Sending Email with Arduino
To email using Gmail, Live or Yahoo SMTP you need to use SSL, However ... in the case of Gmail you will need to access your google account settings and "Allow less secure apps", direct link ->…
-
0
votes1
answer472
viewsA: How to create a function in Arduino with optional arguments
You just need to declare the function, as it is done in C, follow an example. void StatusPino(int nPino = 0,int Valorint = 0); \\ Declare a funcao com um parametro padrão void setup() { pinMode(13,…
arduinoanswered Rodrigo do Amaral Souza 1