※ 引述《s4A111039 (定板小瓜)》之铭言:
: 开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
: 额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
: c++
: 问题(Question):
: 大家好,我有一段程式需"连续"执行下列连结的动作来量测"最大值",请问要如何改?
: http://hank032831.pixnet.net/album/photo/536584618
: (arduino板子)
: void setup() {
: Serial.begin(9600);
: }
: void loop() {
int MaxSensorValue = 0;
: int sensorValue = analogRead(A0);
if(sensorValue > MaxSsensorValue) {
sensorValue = MaxSsensorValue;
}
: Serial.println((sensorValue)* 31.25 / 1023);
: delay(0.016); //1min
: }
: 非常谢谢!