- 使用16x2 LCD 顯示訊息
元件︰
- 1602 16x2 LCD x 1
- 10KΩ 可變電阻 x 1
#include <avr pgmspace.h=""> //define and const 都是常數定義,如Array一定要用const,且優先使用const。 #define ledPin 3 const int buttonPin = 10; void setup() { Serial.begin(9600); pinMode(buttonPin, INPUT); pinMode(ledPin, OUTPUT); } void loop() { // ... }