ちびでぃ~の LCD表示サンプル


Arduino IDE 1.0.1 で、ちびでぃ~の2や、ちびでぃ~のPROにLCDを付けて表示するときのサンプルスケッチ chibiduino2_LCD.pde を使うには、ちょいと変更が必要。

1)#include部分の変更

#include "WProgram.h"                   // needed for IDE to understand a "byte"!
この行を、以下のように変更


#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"                   // needed for IDE to understand a "byte"!
#endif

2)ついでにファイルの拡張子も変更しておきましょうか

chibiduino2_LCD.pde => chibiduino2_LCD.ino

これで、OKです。