Arduino UNO의 액정, AQM0802A로 「A」를 표시
4450 단어 ArduinoUnoAQM0802Arduino
1.SCL과 SDA를 연결, 풀업도 잊지 않고
2. 전원 연결
3. 아래 소스 코드 작성
4. 컴파일 실행으로 표시되면 종료
5. 끝
#include <Wire.h> //I2C library
#define I2Cadr 0x3e // 固定
int ii; //ループカウンター
char data_read[2]; //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};
//i2c書き込みルーチン
void i2c_led_w(char *buff1){
Wire.beginTransmission(I2Cadr);
Wire.write(buff1[0]);
Wire.write(buff1[1]);
Wire.endTransmission();
delay(2);
}//i2c_led_w
void setup()
{
delay(3000); //not delete
Wire.begin(); //uno
//液晶の初期化
for(ii=0;ii<11;ii++){
i2c_led_w(&INIT_com[ii*2]);
} //for
} //end setup
void loop()
{
}//loop
Reference
이 문제에 관하여(Arduino UNO의 액정, AQM0802A로 「A」를 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/caa45040/items/1036e6d4df12dabe2b3f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)