Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <LiquidCrystal.h>
- LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2);
- void setup()
- {
- Serial.begin(9600);
- }
- void loop()
- {
- if (Serial.available()) {
- lcd.write(Serial.read());
- }
- }
- more:https://cuty.io/rdHuWifN
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement