0 votes
1.2k views
in Arduino by
How to restart an arduino using just the code?

1 Answer

0 votes
by
write the function as below.

void(* resetFunc) (void) = 0;

then call it as you need

resetFunc();

Related questions

0 votes
1 answer 1.5k views
+1 vote
2 answers 8.6k views
0 votes
1 answer 3.7k views
0 votes
1 answer 1.0k views
asked Sep 12, 2021 in Arduino by mithun (1.3k points)
+2 votes
1 answer 10.0k views
asked Mar 15, 2017 in Arduino by Manoj
0 votes
1 answer 3.0k views
...