Get code structured using tabs...

the arduino build tool creates function prototypes for all functions from ino files and puts them at the beginning of the generated c++ source code. any function from any ino file of the project can be used in any ino file of the project. this doesn't apply to variables. variable defined outside of the function can be used in following functions in the concatenated ino. so the variable is visible in the following tabs