STM32G031과 내부 ADC와 온도 센서 MCP9701로 소프트웨어 시리얼로 출력한다.
목적
아키즈키에서 팔고있는 저렴한 MCP9701 (약 25 엔)을 사용하여 온도를
소프트웨어 시리얼로 출력한다.
구성
MCP9701-E/TO I-03199
STM32G031J6M6
//#define in7 1 //uno
#define in7 PB7 // 1pin
#define DW digitalWrite
//#define UART_DELAY 832 // 1200bps ok 031
#define UART_DELAY 102 // 9600bps ok 031
//10の割り算 0から1028までは、正しい。主に0から999
//#define DVI10(n) ((n*205)>>11)
//仮想シリアルへの一文字出力 9600bps
int pc_putc(char ch) {
DW(in7, HIGH);
//q_st = micros(); //debug
DW(in7, LOW);//START
delayMicroseconds(UART_DELAY);
for(int ii=0;ii<8;ii++){
DW(in7, (ch>>ii)&1 );
delayMicroseconds(UART_DELAY);
}//for
DW(in7, HIGH);//Stop
delayMicroseconds(UART_DELAY);
//q_et = micros(); //debug 引いた数が0で1041usなら正解
return(0);
}//pc_putc
//文字列の表示
int pc_printf(char *str1) {
//文字の中身がゼロか
while(*str1){
//一文字出力
pc_putc(*str1 ++);
//Serial.print( *str1 ++ ); //uno
} //while
//戻り値
return(0);
}//pc_printf
//0から999まで文字列に変換
char ch_hex_a_b[5];
char *ch_hex_a(int l_num)
{
int a,b,c;
b=l_num/10;
c=l_num-(b*10); //1の桁
a=b/10; //100の桁
b=b-(a*10); //10の桁
ch_hex_a_b[0] = '0' + a;
ch_hex_a_b[1] = '0' + b;
ch_hex_a_b[2] = '0' + c;
ch_hex_a_b[3] = 0;
return(ch_hex_a_b);
}//ch_hex_a
//初期化
void setup()
{
//ポートをhiにする 初期化
pinMode(in7, OUTPUT);
DW(in7, HIGH);
delayMicroseconds(UART_DELAY*10);
//Serial.begin(9600);
} //setup
//メインループ
void loop()
{
int s; //センサーの値 //101
int ii; //ループカウンター
s = analogRead(A3); // PA11 PIN5
//s = (65536/2)-1;
//s = 65536/4;
//s=(4096/2);
//s=(1024/2);
//d String thisString2 = String(s);
//d pc_printf( (char *)thisString2.c_str() );
//d pc_printf("\r\n");
//電圧を温度に変換 ex 20.0 -> 200 温度の十倍を出力
s=(( (s*4) -496)*27081)>>16;
//d //pc_printf( "," ); //debug_i
//d String thisString3 = String(s);
//d pc_printf( (char *)thisString3.c_str() );
//d pc_printf("\r\n");
//小数点以上と小数点以下を分ける
ii=(s/10); // 10の桁
s =(s-(ii*10)); // 1の桁
//温度の小数点以上の表示
pc_printf( ch_hex_a(ii) );
//温度の小数点以下の表示
ch_hex_a( s*10 );
ch_hex_a_b[0] = '.';
//ch_hex_a_b[1] = '0' + s;
ch_hex_a_b[2] = 'C';
pc_printf( ch_hex_a_b );
//リターン
pc_printf( "\r\n" );
//1秒の待ち
delay(1000);
} //loop
Reference
이 문제에 관하여(STM32G031과 내부 ADC와 온도 센서 MCP9701로 소프트웨어 시리얼로 출력한다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/caa45040/items/c7437988584aae61849d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)