12 lines
183 B
C++
12 lines
183 B
C++
void setup() {
|
|
pinMode(32, INPUT);
|
|
pinMode(33, INPUT);
|
|
pinMode(22, INPUT);
|
|
pinMode(23, INPUT);
|
|
}
|
|
|
|
void loop() {
|
|
// put your main code here, to run repeatedly:
|
|
|
|
}
|