Arduino + CLCD BOOSTER "Hello, World!"

できたっ!原因は半固定抵抗の調整ができておらずに液晶への出力が見えない状態になっていただけというつまらないオチでした。マイクロファンさん、お騒がせしました。
そんなわけで、まずはおきまりのパターンで、ということで"Hello, World!"から。

#include 

LiquidCrystal clcd(4, 3, 14, 15, 16, 17);

void setup()
{
  clcd.print("hello, world!"); // Print a message to the LCD.
}

void loop()
{
}


ちゃんと表示されている。
よしよし、これで1歩前進だ。