STM32G031のArduinoでの時計,DS1307で時刻表示AQM0802A その2


stm32g031,stm32l010用に最軽量化したもの

x時間合わせは、別

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


#include <Wire.h> //I2C library

//STM32G031J6M6
#define sdaPin PA12    // ArduinoA4
#define sclPin PA11    // ArduinoA5

#define ADDR    0x68  // 2進数 1101000
#define I2Cadr  0x3e  // 固定

int     ii;           //ループカウンター
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};

//時間をLCD表示形式に変換
char ch_hex_a_b[5];
char *ch_hex_a(int l_num)
{
    ch_hex_a_b[0] = '@';
    ch_hex_a_b[1] = '0' + (l_num >> 4);
    ch_hex_a_b[2] = '0' + (l_num & 0xf);
    ch_hex_a_b[3] = ':';
    ch_hex_a_b[4] = 0;
    return(ch_hex_a_b);
}

//i2c書き込みルーチン 2と4のみ
void i2c_led_w(char *buff1,int n){
  Wire.beginTransmission(I2Cadr);
  Wire.write(buff1[0]); //rs 0がレジスター rs 1がデータ
  Wire.write(buff1[1]); //値1
  if( n == 4 ) {
    Wire.write(buff1[2]); //値2
    Wire.write(buff1[3]); //値3
  }
  Wire.endTransmission();
  delay(2);
}//i2c_led_w

void setup()
{
  Wire.begin(sdaPin,sclPin); //STM32G031J6M6

  //液晶の初期化
  for(ii=0;ii<11;ii++){
    i2c_led_w(&INIT_com[ii*2],2);
  } //for
} //end setup

void loop()
{
  //液晶のクリア
  i2c_led_w(INIT_cls,2);

  // レジスタのアドレスを先頭にする
  Wire.beginTransmission(ADDR);
    Wire.write(0x00);
  Wire.endTransmission();

  // I2Cスレーブに8byteのレジスタデータを要求する
  Wire.requestFrom(ADDR, 8);

  // 8byteのデータを取得する
  for (ii = 0; ii < 8; ii++) {
    while (Wire.available() == 0 ) {}
    data_read[ii] = Wire.read();
  }//for

  //画面に表示
  i2c_led_w(ch_hex_a(data_read[2]) ,4);
  i2c_led_w(ch_hex_a(data_read[1]) ,4);
  i2c_led_w(ch_hex_a(data_read[0]) ,4);

  delay(1000);  //1秒待つ

}//loop


時間合わせ


#include <Wire.h> //I2C library

//STM32G031J6M6
#define sdaPin PA12    // ArduinoA4
#define sclPin PA11    // ArduinoA5

#define ADDR    0x68  // 2進数 1101000

char    data_read[8]; //i2cバッファー

#define HH  12
#define MM  34

void setup()
{
  Wire.begin(sdaPin,sclPin); //STM32G031J6M6

//i2c書き込み
  Wire.beginTransmission(ADDR);

  Wire.write((char) 0    ); //0 レジスターの位置は0
  Wire.write((char) 0    ); //1 秒
  Wire.write((char) ( MM /10)*16+( MM %10) ); //2 分
  Wire.write((char) ( HH /10)*16+( HH %10) ); //3 時

  Wire.write((char) 3    ); //4 曜日
  Wire.write((char) 1    ); //5 日
  Wire.write((char) 1    ); //6 月
  Wire.write((char) 0x20 ); //7 年

  Wire.endTransmission();

} //end setup

void loop()
{

} //loop