Guest User

Untitled

a guest
Dec 11th, 2025
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <Arduino.h>
  2.  
  3. const int ad8318Pin = A0;
  4.  
  5. void setup() {
  6. Serial.begin(9600);
  7. pinMode(ad8318Pin, INPUT);
  8. }
  9.  
  10. void loop() {
  11. Serial.print("A0: ");
  12. Serial.print(A0);
  13. Serial.print(" A1: ");
  14. Serial.println(A1);
  15.  
  16. delay(1000);
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment