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.

STM32F103C8で温度,S-5851Aをシリアル出力 (Mbed)(USBserial)

Last updated at Posted at 2021-06-17

x Mbed NUCLEO-F103RB Mbed2 リビジョン172
x 9600bps
x BluePill F103C8

目的
温度をシリアルに出力したい

USBserialをインポートしメインを書き換える

忙しい人よう




# include "stm32f103c8t6.h"
# include "mbed.h"
# include "USBSerial.h"

USBSerial usbSerial(0x1f00, 0x2012, 0x0001,  false);    // connection is not blocked when USB is not plugged in
//Serial    pc(PA_2, PA_3);


//#define S5851A 0x48
# define ADDR        ((0x48)<<1)   //  address

//I2C i2c(I2C_SDA, I2C_SCL);
I2C i2c(PB_7, PB_6); //103


int     tempval;        //温度
char    data_read[6];   //i2cバッファー
int     n10;            //10の桁

int main() {
    confSysClock();     //Configure system clock (72MHz HSE clock, 48MHz USB clock)

    //usbSerial.printf("\r\n103\r\n");

    while(1) {

        //初期化
        //set address 0
        i2c.write(ADDR, "\000", 1); //addres 0

        //温度の読み込み
        // Read temperature register
        i2c.read(ADDR, data_read,1,false);

        //温度の保存
        // Calculate temperature value in Celcius
        tempval =  data_read[0];

        //tempval = 12; //debug

        //計算
        // Calculation temp
        n10 = tempval/10;                 //10の桁
        tempval = tempval - ( n10 * 10 ); //1の桁

        //液晶に出力
        // Display result
        data_read[0] = '0' + n10;
        data_read[1] = '0' + tempval;
        data_read[2] = '\r';
        data_read[3] = '\n';
        data_read[4] = 0;

        //温度の出力
        //puts(data_read); //010
        //pc.printf(data_read); //767
        usbSerial.printf(data_read); //103

        //1秒待つ
        wait_ms(1000);
        
    }//while
    
}//main




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