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のArduinoでの時計,DS1307で時刻表示OLED,OLED096UNO-A

Last updated at Posted at 2021-03-09

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

x時間合わせは、別
x大幅に説明を省略

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


# include <Arduino.h>
# include <U8x8lib.h>
# include <Wire.h> //I2C library

//f103
# define sdaPin PB7    // ArduinoA4
# define sclPin PB6    // ArduinoA5

# define ADDR    0x68  // 2進数 1101000

U8X8_SSD1306_128X64_NONAME_HW_I2C u8x8(/* reset=*/ U8X8_PIN_NONE); 	      

int     ii;           //ループカウンター
int     jj;           //ループカウンター
int     cursor1;      //カーソルの位置
char    data_read[8]; //i2cバッファー

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

void i2c_oled_w(char *s)
{
            //文字の表示
            u8x8.drawString(
            ((cursor1-0) & 0x07  )*2, // x
            (cursor1>>3)*2,           // y
            s);
            cursor1=cursor1 + 3; 
} //i2c_oled_w

void setup(void)
{
  delay(2000);
    
  u8x8.begin();

  u8x8.setFont(u8x8_font_px437wyse700a_2x2_r);
  
  cursor1 = 0;
  i2c_oled_w("START");
  delay(500);

  //画面のクリア
  for(jj=0;jj<4;jj++){
    //              x    y   12345678
    u8x8.drawString( 0,jj*2,"        ");
  }//enf for
  //カーソルのクリア
  cursor1 = 0;

  //Wire.begin(sdaPin,sclPin); //f103
  Wire.begin(); //f103
  
}

void loop()
{
  //行のクリア
  //              x    y   12345678
  //u8x8.drawString( 0,jj*2,"        ");
  //カーソルのクリア
  cursor1 = 0;


  // レジスタのアドレスを先頭にする
  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_oled_w(ch_hex_a(data_read[2]));
  i2c_oled_w(ch_hex_a(data_read[1]));
  ch_hex_a(data_read[0]);ch_hex_a_b[2]=0;
  i2c_oled_w(ch_hex_a_b);

  delay(1000);  //1秒待つ

}//loop


時間合わせ


# include <Wire.h> //I2C library

# define ADDR    0x68  // 2進数 1101000

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

# define HH  12
# define MM  34

void setup()
{
  Wire.begin(); //uno

//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


i2c_oled_ds1307_F103_ar_1.jpg

i2c_oled_ds1307_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?