#include <Wire.h>
#include <ST7032.h>
ST7032 lcd;
int chr = 0x20;
int cnt = 0;
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.setContrast(60);
lcd.print("Hello, world!");
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(0,1);
lcd.print(cnt++);
lcd.setCursor(15,0);
lcd.write(chr);
chr = (++chr > 256) ? 0x20 : chr;
delay(1000);
}
リビングの整理棚を組み立てた April 28, 2024
ワイヤレスイヤホンを修理した April 23, 2024
溶岩腕時計を修理(?)した April 13, 2024
PR
Keyword Search
Comments