STM32L010と内蔵ADCで電圧をソフトウェアシリアルに出力 3.300Vまで
目的
主にNJL7502Lの微小な電圧を測る。
説明
主な変更点は、電圧表示の計算式を次の計算式にした
adcの値(4096)に6600掛けて8192で割ると3300にピッタリなる。
どして、こうなったは、STM32L010を参照
//電圧
#include "mbed.h"
//10k6Ωの上側 下側フラグ 1は上側 0は下側
#define DO_UP 0
//10の割り算 0から1028までは、正しい。主に0から999
#define DVI10(n) ((n*205)>>11)
//アナログ入力の設定
AnalogIn adc_vbat(A3); //PA_4
//AnalogIn adc_vbat(A0); //767
//Serial pc(USBTX, USBRX); // tx, rx
//Serial pc(SERIAL_TX, SERIAL_RX); //767
//Serial pc(PA_2, PA_3); //010
//Serial pc(PA_9, PA_10); //010
#define UART_DELAY 96 // 1/9600
//仮想シリアルの出力ポート
//DigitalOut TX(PA_9);
DigitalOut TX(PA_2);
char ch_hex_a_b[5];
char *ch_hex_a(int l_num)
{
int a,b,c;
b=DVI10(l_num);
c=l_num-(b*10);
l_num=b;
a=DVI10(l_num);
b=l_num-(a*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
//仮想シリアルへの一文字出力 9600bps
int pc_putc(char ch) {
TX=1;
TX=0;//START
wait_us(UART_DELAY);
for(int ii=0;ii<8;ii++){
TX=(ch>>ii)&1;
wait_us(UART_DELAY);
}; //for
TX=1;//Stop
wait_us(UART_DELAY);
return(0);
} //pc_putc
//文字列の表示
int pc_printf(char *str1) {
int ii = 0; //ループカウンター
while(str1[ii]!=0){
//一文字出力
pc_putc(str1[ii]);ii++;
} //while
//戻り値
return(0);
}
int main() {
//ポートをhiにする 初期化
TX=1;
//無限ループ
while(1) {
//adcの読み込み 0から4096
int s = (adc_vbat.read_u16()>>4);
// pc.printf("\r\n -S=%d",s); //767
//電圧に変換 ex 3.300 -> 3300 mVを出力
s=(s*6600)>>13;
// //s = 3300;
// pc.printf("\t c=%d",s); //767
//小数点以上と小数点以下を分ける iiは1の桁 sは小数点以上の桁
int ii = s;
if ( ii >= 3000 ) { ii = (ii - 3000); s = 3;}
else if( ii >= 2000 ) { ii = (ii - 2000); s = 2;}
else if( ii >= 1000 ) { ii = (ii - 1000); s = 1;}
else { ; s = 0;}
// pc.printf("\t t=%d %d",s,ii); //767
// pc.printf("\r\n"); //767 リターン
//電圧の小数点以上の表示
ch_hex_a( s*10 );
ch_hex_a_b[0] = '+';
//ch_hex_a_b[1] = '0' + s;
ch_hex_a_b[2] = '.';
pc_printf( ch_hex_a_b );
pc_printf( ch_hex_a(ii) );
//リターン
pc_printf( "\r\n" );
//1秒の待ち
wait_ms(1000);
} //while
} //main
//容量削減
void error(const char* format, ...){}
Author And Source
この問題について(STM32L010と内蔵ADCで電圧をソフトウェアシリアルに出力 3.300Vまで), 我々は、より多くの情報をここで見つけました https://qiita.com/caa45040/items/4c38973ef53cf159837c著者帰属:元の著者の情報は、元の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 .