I know that variables defined at the top of a sketch are globally accessible, and those defined inside the loop() function are only accessible in that function, and variables defined inside a for loop are only accessible within that for loop. but what about variables defined inside the setup() section? Are they only available within the setup section?