LoginSignup
1
1

More than 5 years have passed since last update.

arduinoでLCD その3

Last updated at Posted at 2015-08-26

aitendoで購入したTS206をarduino unoにつないで見ました。

写真

MVC-003S.JPG

回路図

ts206.PNG

ライブラリー作りました。

サンプルコード

#include <Ts206.h>

Ts206 lcd(10, 9, 7);
// data, wr, cs

void setup()
{
    int i;
    lcd.begin();
    lcd.disp(1, 'H');
    lcd.disp(2, 'e');
    lcd.disp(3, 'l');
    lcd.disp(4, 'l');
    lcd.disp(5, 'o');
    lcd.disp(6, ' ');
    lcd.disp(7, '2');
    lcd.disp(8, '0');
    lcd.disp(9, '6');
}
void loop()
{

}

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