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.

STM32G031と内部ADCとNJL7502Lでなんちゃってluxをソフトウェアシリアル出力(明るさ)

Last updated at Posted at 2021-05-30

x約2Vで約400luxにならないといけないがたんに電圧の200倍にする

目的
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



soft_serial_adc_lux_1.jpg

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?