STM32L010とMCP9701で温度をシリアルに出力 (RawSerial)(STM32)
x Mbed2のリビジョンは、143
x あまり正確では、ない
目的
秋月で売っている安価なMCP9701(約25円)を使って温度を出力する。
構成
MCP9701-E/TO I-03199
説明
MCP9701は、
0℃の時、400mV
1℃あたり19.5mV
精度は、±4℃
電線が引き出しやすい位置のPA4をアナログ入力にする
計算には、容量削減の為に浮動小数点となるべく割り算は、使わない
MCP9700は、ファミリー、オフセット500mV、10mV/1℃ 今回は、使わない
19.5は、1℃あたりの電圧
3300は、ADCの電圧
400は、0℃
3300/19.5=169.2
400/19.5=20.5
(4096*1692)/4096=1692
式を簡素化
//電圧を温度に変換 ex 20.0 -> 200 温度の十倍を出力
s=((s*1692)>>12)-205;
プログラム
//温度
#include "mbed.h"
//10の割り算 0から1028までは、正しい。主に0から999
#define DVI10(n) ((n*205)>>11)
//アナログ入力の設定
AnalogIn adc_vbat(A3); //PA_4
//AnalogIn adc_vbat(A0); //767 303
//Serial pc(USBTX, USBRX); // tx, rx
//Serial pc(SERIAL_TX, SERIAL_RX); //767 303
//Serial pc(PA_2, PA_3); //010
//Serial pc(PA_9, PA_10); //010
RawSerial pc(PA_2, PA_3); //010
//メイン関数
int main() {
int s; //ADCの値
int n0; //温度 小数点以上
char data_read[8]; //バッファー
//無限ループ
while(1) {
//adcの読み込み 0から4096
s = (adc_vbat.read_u16()>>4);
//電圧を温度に変換 ex 20.0 -> 200 温度の十倍を出力
s=((s*1692)>>12)-205;
//小数点以上と小数点以下を分ける
n0=DVI10(s); // 小数点以上
s =(s-(n0*10)); // 小数点以下
//温度の表示
data_read[0] = '0' + DVI10(n0);
data_read[1] = '0' + ( n0-(DVI10(n0)*10) );
data_read[2] = '.';
data_read[3] = '0' + s;
data_read[4] = '\r';
data_read[5] = '\n';
data_read[6] = 0;
pc.printf(data_read); //010
//pc.printf("%d.%d\r\n",n0,s); //767 303
//1秒の待ち
wait_ms(1000);
} //while
} //main
//容量削減
void error(const char* format, ...){}
Author And Source
この問題について(STM32L010とMCP9701で温度をシリアルに出力 (RawSerial)(STM32)), 我々は、より多くの情報をここで見つけました https://qiita.com/caa45040/items/5576ad7c2ccbd5f9a3c7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .