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.

STM32G031とにおいセンサーAE-TGS8100で液晶表示 (Arduino)(AQM0802A)

Last updated at Posted at 2021-07-11

x リセットをいろいろいじるから上級者用
x リセットは、GPIOに変える

目的
コロナ等を含め室内の空気のよごれをにおいを通して値数表示する。

構成
AE-TGS8100 K-15562
AQM0802A-RN-GBW P-06669

説明
3.3V系で使いたいのでマニュアルの式から
プログラムを作った。秋月の式と値が正しい事を確認した
0で割るとエラーになることを確認したので何でも良かったので
0を-1に変換した。現実的には、マイナスの大きい数になるので
区別が付くからマーいいか
そのままだとつまらないので液晶を付けた。
CO2センサーの為の前段階

main - 初期化
loop - 繰り返し処理
i2c_led_w - 2バイトI2Cに送る

●だめだめ日記
なぜかここに書いてある?今後の予定
約2400円のCO2センサーをゲットする
諸事情により、回路図、ファームは、非公開
今、考えているハードは、STM32L010(容量不足でやめた)
[STM32G031かわるかも]と4桁7セグ
たぶん、7セグは、ノイズが少なくて見やすい
CO2の作り方のヒントは、すでに全て書いてあるので
各自、既に優秀なので俺の屍を超えていけ、以上、終了

serial_nioi_031_1.jpg

resetgpio.jpg



# include <Wire.h> //I2C library

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

// I2C  address. 
# define I2Cadr  0x3e  // 固定

char    data_read[2]={'@','t'}; //i2cバッファー
int     ii;                     //ループカウンター

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};

void i2c_led_w(char *buff1){
  Wire.beginTransmission(I2Cadr);
  Wire.write(buff1[0]);
  Wire.write(buff1[1]);
  Wire.endTransmission();
  delay(2);
}//i2c_led_w

int adval = 0;
float sensor_r;

void setup() {

  pinMode(PA0, OUTPUT);

  //i2cの初期化
  //Wire.begin(); // initialise the connection //767 UNO
  Wire.begin(sdaPin,sclPin); //STM32G031J6M6

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

  //Serial.begin(9600); //767
  //pinMode(PA0, OUTPUT); //031
}//setup

float v1;
float rs;

void loop() {
  digitalWrite(PA0, HIGH); //031
  delay(1);
  analogReadResolution(12);
  adval = analogRead(A9); // PB7 PIN1 031
  delay(1);
  digitalWrite(PA0, LOW); //031

//Serial.println(adval);
//adval = 4096;
//adval = 300; //242mV 114.121kOME
//adval = 0;

if(adval == 0) {adval = -1;}

v1 = (    ((float)adval) * 3.300) / 4096.0;

//Serial.println(v1,3); //767

rs =( (3.0-v1)/v1 ) * 10.0;

//Serial.println(rs,3); //767

/*
  if(adval != 0) {
    sensor_r = 6144.0 / adval - 10;
    Serial.println(sensor_r,3);
  } else {
    Serial.println("0");
  }//end if
*/
  delay(998);

  int s = rs;
  int n0,n10,n100;

  n10  = s / 10;           // 123 -> 12
  n0   = s - (n10 *10);    // 123 - 120 -> 3
  n100 = n10 / 10;         // 12  -> 1
  n10  = n10 - (n100 *10); // 12 - 10 -> 2
  
  //画面のクリア
  i2c_led_w(INIT_cls);

  //液晶に表示
  data_read[1] = '0' + n100;
  i2c_led_w(data_read);
  data_read[1] = '0' + n10;
  i2c_led_w(data_read);
  data_read[1] = '0' + n0;
  i2c_led_w(data_read);

}//loop



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?