Hi guys,
-
if I define digitalWrite(IN1,HIGH) and want to make it low in the loop. Is this possible?
-
if possible whenever void loop() function executes once lets say I have set digitalWrite(IN1,LOW), what will happen if the loop starts again will it set the IN1 HIGH as defined in the setup or writes LOW because it is declared LOW in first execution?
-
or simply does the program only executes void setup() function once while loop is executed continiosly? It may also be impossible to set a pin a different state if it is declared in the setup function :~