I have few question to the arduino memory.
Does it make sense to move global Variables, a single int, with PROGMEM in the Flash Memory or does that the Compiler for me? Or should I declare the global variable "#define" instead "static const int xy =..."
A static Variable in the loop function Example:
void loop() { static unsigned short Array [] = {Global_Variable_1, Global_Variable_2,...} }
Where is that Variable "Array" stored? Is it right that it is stored only in the SRAM?