Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <Arduino.h>
- const int ad8318Pin = A0;
- void setup() {
- Serial.begin(9600);
- pinMode(ad8318Pin, INPUT);
- }
- void loop() {
- Serial.print("A0: ");
- Serial.print(A0);
- Serial.print(" A1: ");
- Serial.println(A1);
- delay(1000);
- }
Advertisement
Add Comment
Please, Sign In to add comment