viernes, 27 de noviembre de 2020

LCD Custom Character Generator - Support character lcd and create code for Arduino

 

https://maxpromer.github.io/LCD-Character-Creator/

LCD Custom Character Generator

Support character lcd and create code for Arduino.



 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
      
Link
Color  
Microcontroller 
Interfacing  
Data Type  
Code
#include <LiquidCrystal.h>

LiquidCrystal lcd(12, 11, 5, 4, 3, 2); // RS, E, D4, D5, D6, D7

byte customChar[] = {
  B00000,
  B00000,
  B00000,
  B00000,
  B00000,
  B00000,
  B00000,
  B00000
};

void setup() {
  lcd.begin(16, 2);
  lcd.createChar(0, customChar);
  lcd.home();
  lcd.write(0);
}

void loop() { }
Open Source web tool 

1 comentario: