BOTTOM LINE: You will make your own custom character and turn it in. Read on for ALL THE details.
There are loads of custom characters available for your Arduino LCD display.
AND you can make your own custom character – here’s how.
- If you are working in Tinkercad – make a copy of your basic Arduino LCD LED Circuit. If you don’t have a circuit built then here’s the wiring diagram.
- Replace your existing code with my sample code. Sample code here.
- Look at the comments and try to change the position of the character on the LCD display.
- Run the code and enjoy the custom character.
- OK, now take the code below and add it to your program -if you are using the sample code above it should paste onto line 17:
byte Arrow[] = { B00100, B01110, B11111, B00100, B00100, B00100, B00100, B00100 };
6. We will have to add more lines of code to make this work. In void setup() add this line of code:
lcd.createChar(1, Arrow);
7. Add these two lines of code to void loop():
lcd.setCursor(3, 0);
lcd.write(byte(1));
RUN THE CODE
Now you make your own custom character!
BUT WAIT…now you get to make your custom characters. Use the link below for custom character generator that also writes (some of) the code that you need.
Click here for website that helps you to make your own custom character.
Create and add two of your own custom characters into your program. Turn in the Tinkercad share link on Canvas when you are done.