const int Button = 3;
const int Switch = 4;
const int AnOn = A7;
const int AnTw = A6;
const int DiOn = A5;
const int DiTw = A4;
void setup() {
pinMode(Button, INPUT);
pinMode(Switch, INPUT);
pinMode(AnOn, INPUT);
pinMode(AnTw, INPUT);
pinMode(DiOn, INPUT);
pinMode(DiTw, INPUT);
}
void loop() {
// put your main code here, to run repeatedly:
}