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 3 years have passed since last update.

STM32L010とMCP3425で0から2.048000Vまで62uV単位を液晶表示(MCP3425A0T-E/CH 16bitADC)(電圧)

Last updated at Posted at 2021-04-24

STM32L010用に軽量コンパクト

xNJL5513Rの実験で必要になったために開発
x工夫いろいろ mbedのリビジョンは125
x すべては、容量削減(勝利?)のために ジ〇クジオン

構成

STM32L010F4P6 I-15689
MCP3425A0T-E/CH I-07638
AQM0802A-RN-GBW P-06669

1.SCLとSDAを接続、プルアップも忘れずに
2.電源の接続
3.下記のソースコードを書き込む
4.コンパイル実行で表示されたら終了
5.おわり

いろいろ

1000以降の分離のアルゴリズム 今回は、不採用


        h = (((ii+48)>>11)<<1);
        k = ii - (1000*h);
        h = h + ((k+24)>>10);
        k = k - (1000*(h&1));
        printf("\t%d",h );        
        printf("\t%d\n\r",k );


今回は、採用しない1000で割り算


//1000の割り算 主に0から2048
# define DVI1000(a)  (((a>>3)*525)>>16)

忙しい人よう
https://os.mbed.com/users/caa45040/code/i2c_lcd_mcp3425_010_2/

ソース


# include "mbed.h"

//10の割り算 0から1028までは、正しい。主に0から999
# define DVI10(n) ((n*205)>>11)

//16ビットadcの4ビットの変換テーブル
# define ADC4BIT { 0   , 62 ,125 ,187 ,250 ,312 ,375 ,437 ,500 ,562 ,625 ,687 ,750 ,812 ,875 ,937 }

//AnalogIn adc_vbat(A3); //PA_4

# define ADDR        (0xD0)   //  address
# 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};

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] = '@';
    ch_hex_a_b[1] = '0' + a;
    ch_hex_a_b[2] = '0' + b;
    ch_hex_a_b[3] = '0' + c;
    ch_hex_a_b[4] = 0;

    return(ch_hex_a_b);
}

int ii;     //ループカウンタ

int main()
{
    //printf("767\r\n"); //767
    //液晶の初期化
    for(ii=0;ii<11;ii++){
        i2c.write(ADDR_LCD, &INIT_com[ii*2], 2);wait_ms(2);
    } //for

    i2c.write(ADDR, "\230", 1); //16bit 15sps PGA x1

//    int p,s; //767
    int s;   //101
    
//    float Volts;
//    float Vref = 2.048 ;
    
    short bit4[]=ADC4BIT;
    
    while (1) {
        //液晶のクリア
        i2c.write(ADDR_LCD,INIT_cls,2);wait_ms(2);

//    //adcの読み込み
//        s = (adc_vbat.read_u16()>>4);
//
//    //  (4096*165)/2048=330 電圧の100倍に変換
//    //s = 13;
//    p = (s*165) >> 11; 

        //データの読み込み
        i2c.read(ADDR | 1, data_read, 2);
        
        s = (data_read[0] * 256 ) + data_read[1];
        //s = 32767;
//        printf("-s=%d\r\n",s); //767
//        printf(" h=%d\r\n",data_read[0]);
//        printf(" l=%d\r\n",data_read[1]);

//        Volts = s * Vref / 32767.0f ;
//        printf(" f=%f\r\n",Volts );

//        p = ( (s >> 4) * 1000 )  + (bit4[ s & 0xf ]) ;
//        printf(" q= %d\r\n",p); //767

//s=(65536/2/2/2)+1;

ii=(s >> 4);
if     ( ii >= 2000 ) { ii = ii - 2000; /*printf("2.\n\r");*/   i2c.write(ADDR_LCD,"@2.",3); }
else if( ii >= 1000 ) { ii = ii - 1000; /*printf("1.\n\r");*/   i2c.write(ADDR_LCD,"@1.",3); }
else                  {                 /*printf("0.\n\r");*/   i2c.write(ADDR_LCD,"@0.",3); }

//printf(" o=%s\r\n",ch_hex_a( ii )                );
i2c.write(ADDR_LCD, ch_hex_a( ii ) ,4);

//printf(" o=%s\r\n",ch_hex_a( (bit4[ s & 0xf ]) ) );
i2c.write(ADDR_LCD,ch_hex_a( ( (int)bit4[ s & 0xf ]))  ,4);

//        // 32768/(163.84/2)=400 luxに変換
//        p=( ((s>>5)*6)  + (s>>7)  ) >> 4;
//        //printf(" p=%d\r\n",p); //767
//        
//        i2c.write(ADDR_LCD, ch_hex_a( p ) ,4);

        wait_ms(1000);
    }//while

}//main

void error(const char* format, ...){}



mcp3425_767_adc_5.jpg

mcp3425_767_adc_6.jpg

mcp3425_767_adc_7.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?