STM32G031과 내부 ADC와 NJL7502L로 왜 lux를 소프트웨어 시리얼 출력(밝기)
목적
adc 테스트용
구성
STM32G031J6M6
NJL7502L
이 명령어에서 stm32의 adc는 12비트가 된다.
analogReadResolution(12); //stm32g031 adc 12bits
출처
//#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);
analogReadResolution(12); //stm32g031 adc 12bits
//Serial.begin(9600);
} //setup
//メインループ
void loop()
{
int s; //センサーの値 //101
s = analogRead(A3); // PA11 PIN5
//d String thisString2 = String(s);
//d pc_printf( (char *)thisString2.c_str() );
//d pc_printf("\r\n");
// //adcの値4096に6600掛けて8192で割ると3300になる
// //電圧に変換 ex 3.300 -> 3300 mVを出力
// s=( (s) *6600)>>13;
// //sを2倍して10で割るとluxになる
// s= ( s*2 ) / 10;
//adcの値4096に660掛けて4096で割ると660になる
s=(( (s) *660)>>12);
//d String thisString3 = String(s);
//d pc_printf( (char *)thisString3.c_str() );
//d pc_printf("\r\n");
//明るさの小数点以上の表示
pc_printf( ch_hex_a(s) );
//リターン
pc_printf( "\r\n" );
//1秒の待ち
delay(1000);
} //loop
Reference
이 문제에 관하여(STM32G031과 내부 ADC와 NJL7502L로 왜 lux를 소프트웨어 시리얼 출력(밝기)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/caa45040/items/c48c8b79f819e5fb0f36텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)