STM32L010とS-5851Aで温度を秋月シリアル7セグに出力 (GPIO)(STM32)(2桁)
x mbedのリビジョンは、125
目的
秋月で売っている安価なS-5851A(約110円)を使って温度を出力する。
構成
赤色7セグメントLEDシリアルドライバキット K-10360
赤色7セグメントLEDシリアルドライバキット(DIP化キット)
[AE-7SEG-BOARD-KIT-RED]
通販コード K-10360
発売日 2016/03/14
メーカーカテゴリ 株式会社秋月電子通商
#include "mbed.h"
//******* ****** ***** *****
// * * * *
// * * ***** * ***
// * **** * * *
// * * * * *
// * ***** ***** *****
//10の割り算 0から1028までは、正しい。主に0から999
#define DVI10(n) ((n*205)>>11)
//アナログ入力の設定
//AnalogIn adc_vbat(A3); //PA_4 010
//AnalogIn adc_vbat(A0); //PA_0 010
//AnalogIn adc_vbat(A0); //767 303
#define swclk1 PA_5 //A4
#define test01 PA_6
#define swdio1 PA_7 //A6
#define en1 PA_4 //A3
DigitalOut swdclk(swclk1);
DigitalOut swdio(swdio1);
DigitalOut en(en1);
char seg[32] = {
0x00 , //0 @ -> ' '
0x77 , //1 A o
0x7c , //2 B combined use "6"
0x39 , //3 C
0x5e , //4 D
0x79 , //5 E o
0x71 , //6 F
0x3d , //7 G
0x76 , //8 H o
0x06 , //9 I combined use "1"
0x1e , //10 J
0x75 , //11 K
0x38 , //12 L o
0x15 , //13 M
0x37 , //14 N o
0x3f , //15 O o combined use "0"
0x73 , //16 P
0x67 , //17 Q combined use "9"
0x50 , //18 R
0x6d , //19 S combined use "5"
0x78 , //20 T
0x3e , //21 U
0x1c , //22 V
0x2a , //23 W o
0x64 , //24 X
0x6e , //25 Y
0x5b , //26 Z combined use "2"
0x4f , //27 [ --> "3"
0x66 , //28 \ --> "4"
0x27 , //29 ] --> "7"
0x7f , //26 ^ --> "8"
0x08 //31 _
};
// 12345678 12345678 12345678 12345678
char b8[8] = {0b10000000,0b01000000,0b00100000,0b00010000,
0b00001000,0b00000100,0b00000010,0b00000001 };
void seg1(char v)
{
for(int jj=0;jj<8;jj++){
if( (v & b8[jj]) == 0 ){
swdio=0; //ビットが0
} else {
swdio=1; //ビットが1
}//endif
swdclk=1;swdclk=0; //clk
}//for
en=1;
en=0;
}//seg1
char nn[]={'O','I','Z','[','\\','S','B', ']','^','Q'};
int comma1=0; // コンマ(小数点)の有効フラグ 1で有効 0無効
//7segの一文字出力 nana_seg
int ns_putc(char ch) {
if(ch == ' ') {
ch = '@';
} else if(ch == '.') {
return(0);
} else if (ch >= '0' && ch <= '9' ) {
ch = nn[ch-'0'];
}
if( comma1 != 0 ) { comma1 = (0x80); }
seg1(seg[ch-64] | comma1 );
comma1 = 0;
//戻り値
return(0);
}//ns_putc
//文字列の表示 nana_seg
int ns_printf(char *str1) {
//文字の中身がゼロか
while(*str1){
//コンマの処理
comma1=0;
if( (*(str1+1) ) == '.' ) { comma1=1; }
//一文字出力
ns_putc(*str1 ++);
} //while
//戻り値
return(0);
}//ns_printf
//I2C i2c(I2C_SDA, I2C_SCL); //767
//I2C i2c(dp5, dp27); //1114
I2C i2c(PA_10, PA_9); //010
//#define S5851A 0x48
#define ADDR ((0x48)<<1) // address
//メイン関数
int main() {
char data_read[8]; //バッファー
//7セグの初期化
en=0;
swdclk=0;
ns_printf("ST");wait_ms(1000); //debug
//初期値の表示
ns_printf("00");
//最初のウエート 1秒待つ
wait_ms(1000);
//無限ループ
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
int tempval = data_read[0]; //温度の転記
//tempval = 12; //debug
//表示用の変数の初期化
int s = tempval;
int n0,n10,n100,n1000;
n10 = s / 10; // 1234 -> 123
n0 = s - (n10 *10); // 1234 - 1230 -> 4
n100 = n10 / 10; // 123 -> 12
n10 = n10 - (n100 *10); // 123 - 120 -> 3
n1000 = n100 / 10; // 12 -> 1
n100 = n100 - (n1000*10); // 12 - 10 -> 2
//画面に表示
//data_read[0] = '0' + n1000;
//data_read[1] = '0' + n100;
data_read[0] = '0' + n10;
data_read[1] = '0' + n0;
data_read[2] = '.';
data_read[3] = 0;
ns_printf(data_read);
//1秒待つ
wait_ms(1000);
}//while
}//main
//容量削減
void error(const char* format, ...){}
Author And Source
この問題について(STM32L010とS-5851Aで温度を秋月シリアル7セグに出力 (GPIO)(STM32)(2桁)), 我々は、より多くの情報をここで見つけました https://qiita.com/caa45040/items/38a11889dec921873c04著者帰属:元の著者の情報は、元の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 .