Advertisement
sissou123

Untitled

Nov 6th, 2023
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | Source Code | 0 0
  1. #include <LiquidCrystal.h>
  2.  
  3. LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2);
  4.  
  5. void setup()
  6. {
  7. Serial.begin(9600);
  8. }
  9.  
  10. void loop()
  11. {
  12. if (Serial.available()) {
  13. lcd.write(Serial.read());
  14. }
  15. }
  16. more:https://cuty.io/rdHuWifN
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement