Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <LiquidCrystal.h>
- LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
- byte Person[2][8] =
- {
- {B01110,
- B01110,
- B00100,
- B01110,
- B10101,
- B00100,
- B01010,
- B01010
- },
- {
- B01110,
- B01110,
- B00100,
- B01110,
- B10100,
- B01100,
- B10010,
- B10001
- }
- };
- void setup()
- {
- lcd.createChar(0,Person[0]);
- lcd.begin(16,2);
- lcd.write(byte(0));
- }
- void loop()
- {
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement