« Windows 10のTP版グラボのdriverが無い | トップページ | 1-wire HD44780 LCD for Arduino モジュール化 »

2015年2月15日 (日)

1-wire HD44780 LCD for Arduino

ShiftRegLCD123 プロジェクトの 1-wire LCD connection をBBで試してみました。
とりあえず、動いた。
当初、39kΩの抵抗が無かったので、15k+15k+9.1kの合成抵抗では駄目でした。

[sketch]
#include <ShiftRegLCD123.h>
const byte lcdPin  = 2;
ShiftRegLCD123 srlcd(lcdPin);

void setup()
{
  srlcd.begin(16,2);
  srlcd.setCursor(0,0);
  srlcd.print("SRLCD123 1-wire test");
}
void loop()
{
  srlcd.setCursor(0, 1);
  srlcd.print("uptime ");
  srlcd.print(millis()/1000);
  delay(100) ;
}

|

« Windows 10のTP版グラボのdriverが無い | トップページ | 1-wire HD44780 LCD for Arduino モジュール化 »

Arduino」カテゴリの記事

コメント

この記事へのコメントは終了しました。

トラックバック


この記事へのトラックバック一覧です: 1-wire HD44780 LCD for Arduino:

« Windows 10のTP版グラボのdriverが無い | トップページ | 1-wire HD44780 LCD for Arduino モジュール化 »