0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

STM32F767と温度センサーMCP9701で液晶表示 (Mbed)(AQM0802)(STM32)

Last updated at Posted at 2021-06-29

x MCP9701-E/TO 販売コード 103199

温度を表示

目的
秋月で売っている安価なMCP9701(約25円)を使って温度を液晶に表示する。

構成
MCP9701-E/TO I-03199
AQM0802A-RN-GBW P-06669

説明
MCP9701は、
0℃の時、400mV
1℃あたり19.5mV
精度は、±4℃
電線が引き出しやすい位置のP_4をアナログ入力にする
計算には、容量削減の為に浮動小数点と割り算は、使わない
電圧表示との違いは、メインの式
MCP9700は、ファミリー、オフセット500mV、10mV/1℃ 今回は、使わない

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"

//アナログ入力の設定
//AnalogIn adc_vbat(A3); //PA_4
AnalogIn adc_vbat(A0); //767

//Serial pc(SERIAL_TX, SERIAL_RX); //767 303 debug

#define ADDR_LCD    (0x7C)   //  address

I2C i2c(I2C_SDA, I2C_SCL); //767
//I2C i2c(dp5, dp27); //1114
//I2C i2c(PA_10, PA_9); //010

char    data_read[8];   //i2cバッファー

char INIT_com[]={0x0,0x38,
0x0,0x39,
0x0,0x4,
0x0,0x14,
0x0,0x70,
0x0,0x56,
0x0,0x6C,
0x0,0x38,
0x0,0xC,
0x0,0x1,
0x40,0x41};

char INIT_cls[]={0x0,0x1};

int ii;  //ループカウンタ
int s;   //アナログ読み取り値

//メイン関数
int main()
{
    //pc.printf("767\r\n"); //767 debug

    //液晶の初期化
    for(ii=0;ii<11;ii++){
        i2c.write(ADDR_LCD, &INIT_com[ii*2], 2);wait_ms(2);
    } //for
    
    //無限ループ
    while (1) {
        //液晶のクリア
        i2c.write(ADDR_LCD,INIT_cls,2);wait_ms(2);
        
        //adcの読み込み 0から4096
        s = (adc_vbat.read_u16()>>4);
        
        //pc.printf("%d\r\n",  ((s*1692)>>12)-205   ); //767 debug
        //pc.printf("%d\r\n",  ((s-496)*27081)>>16  ); //767 debug
        
        //電圧を温度に変換 ex 20.0 -> 200 温度の十倍を出力
        s=((s*1692)>>12)-205;
        
        //s = 0;   //0  debug
        //s = 200;  //20 debug
        
        //小数点以上と小数点以下を分ける
        ii=s/10;           // 10の桁
        s =(s-(ii*10));    //  1の桁
        
       //温度の表示
        data_read[0] = '@';
        data_read[1] = '0'+(ii/10);
        data_read[2] = '0'+(ii%10);
        data_read[3] = '.';
        data_read[4] = '0' + s;
        data_read[5] = 'C';
        i2c.write(ADDR_LCD, data_read ,6);
        
        //pc.printf("%6s\r\n",data_read); //767 debug
        
        //1秒待つ
        wait_ms(1000);
            
    }//while
    
}//main



image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?