尽管造书去做的。但还是有莫名的成就感

从串口显示出,电压变化,

void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);
  
}

void loop() {
  // put your main code here, to run repeatedly:
  int val=analogRead(A0);
  Serial.println(val);
  delay(500);
}

版权声明:本文为llguanli原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/llguanli/p/6919096.html