Memory heap

holmes4:
Can you give me an example of a static object on the Arduino?.

int i_am_static;

void loop() {
  int i_am_not_static;
  static int but_I_am;
}
1 Like