serial-port - Arduino map() 方法 - 为什么?

标签 serial-port arduino mapping signal-processing digital

我只是在看一些示例代码并遇到了一行,我不完全理解为什么需要这样做。我了解您正在接受模拟值。这个值显然在 0 到 1024 之间?为什么是这样?为什么输出需要映射在 0 到 255 之间?是什么决定了这里使用的参数?有问题的行:

   // map it to the range of the analog out:
      outputValue = map(sensorValue, 0, 1024, 0, 255); 

在代码中突出显示:
created 29 Dec. 2008
 Modified 4 Sep 2010
 by Tom Igoe

 This example code is in the public domain.

 */

// These constants won't change.  They're used to give names
// to the pins used:
const int analogInPin = A0;  // Analog input pin that the potentiometer is attached to
const int analogOutPin = 9; // Analog output pin that the LED is attached to

int sensorValue = 0;        // value read from the pot
int outputValue = 0;        // value output to the PWM (analog out)

void setup() {
  // initialize serial communications at 9600 bps:
  Serial.begin(9600); 
}

void loop() {
  // read the analog in value:
  sensorValue = analogRead(analogInPin);            
  **// map it to the range of the analog out:
  outputValue = map(sensorValue, 0, 1024, 0, 255);**  
  // change the analog out value:
  analogWrite(analogOutPin, outputValue);           

  // print the results to the serial monitor:
  Serial.print("sensor = " );                       
  Serial.print(sensorValue);      
  Serial.print("\t output = ");      
  Serial.println(outputValue);   

  // wait 10 milliseconds before the next loop
  // for the analog-to-digital converter to settle
  // after the last reading:
  delay(10);                     
}

非常感谢您的回复。

最佳答案

模拟输出只有一个介于 0 和 255 之间的可接受范围。

因此,该值必须映射在可接受的范围内。

map 方法的文档在这里:http://arduino.cc/en/Reference/map

Because the Arduino has an analogRead resolution of 0-1023, and an analogWrite resolution of only 0-255, this raw data from the potentiometer needs to be scaled before using it...



此解释来自 Arduino 传感器教程(在“代码”标题下):http://arduino.cc/en/Tutorial/AnalogInOutSerial

关于serial-port - Arduino map() 方法 - 为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9024124/

相关文章:

c++ - 在 map 中存储特定范围内的值

javascript - 映射复选框 ID 以返回相关属性

linux - 如何在 gnu screen 中切换 CR/LF?

python - 如何在Python中声明类型为 "uint8_t"*的变量

delphi - Delphi 7上监听串口

c++ - 如何使类的函数成为默认值

mapping - spring-data-elasticsearch - @Field/FieldIndex.not_analyzed 被忽略

python - 使用pyserial与调制解调器通信

c++ - 无法读取串行输入

javascript - NODE.js 和 JavaScript;从串行端口获取一行然后关闭