Added support for custom characters

This commit is contained in:
Lauchmelder23 2020-11-20 14:44:34 +00:00
parent 63f674dcaf
commit 6cb03a8361
4 changed files with 36 additions and 2 deletions

View file

@ -114,6 +114,19 @@ This function sends a variable number of characters to the screen. Use `sendText
*** ***
```c
void loadCustomChar(LCDScreen* screen, uint8_t cgram_addr, ...);
```
This function writes a custom character into the CGRAM of the LCD screen. `cgram_addr` can be any number from `0x0` to `0xF`. Hence you can have up to 16 custom characters at once in memory.
After the address the function expects 8 bytes of character data. The lower 5 bits encode the pixel data, where 0 stands for black and 1 for white.
After loading a character you can write it by using the CGRAM address as a character byte for the `sendData` function (e.g. `sendData(&screen, 0)` will send the character at CGRAM address `0x0`).
WARNING: Writing to CGRAM moves the cursor, so keep that in mind when you try to write characters to memory.
***
```c ```c
void clearScreen(LCDScreen* screen); void clearScreen(LCDScreen* screen);
``` ```

View file

@ -6,7 +6,13 @@ int main(void)
configurePins(&screen, 7, 9, 8, 0, 0, 0, 0, 21, 22, 23, 24); configurePins(&screen, 7, 9, 8, 0, 0, 0, 0, 21, 22, 23, 24);
initScreen(&screen, HALF_BYTE_INTERFACE, TWO_LINES, FONT_5x7, CURSOR_ON | CURSOR_BLINK, LEFT_TO_RIGHT); initScreen(&screen, HALF_BYTE_INTERFACE, TWO_LINES, FONT_5x7, CURSOR_ON | CURSOR_BLINK, LEFT_TO_RIGHT);
sendText(&screen, "ゴチソウサマデシタ");
loadCustomChar(&screen, 0, 0b00000, 0b00000, 0b01010, 0b00000, 0b10001, 0b01110, 0b00000, 0b00000);
returnCursor(&screen);
sendChars(&screen, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
setCursor(&screen, 0, 1);
sendChars(&screen, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
resetPins(&screen); resetPins(&screen);
return 0; return 0;

View file

@ -244,3 +244,15 @@ void sendChars(LCDScreen* screen, size_t len, ...)
va_end(args); va_end(args);
} }
void loadCustomChar(LCDScreen* screen, uint8_t cgram_addr, ...)
{
va_list args;
va_start(args, cgram_addr);
sendCommand(screen, CGRAM_AD_SET | (cgram_addr << 3));
for(int i = 0; i < 8; i++)
sendData(screen, va_arg(args, int));
va_end(args);
}

View file

@ -131,6 +131,7 @@
#define CURSOR 0b11111111 #define CURSOR 0b11111111
#include <stdint.h> #include <stdint.h>
#include <stdarg.h>
extern void waitMs(uint32_t ms); extern void waitMs(uint32_t ms);
@ -151,8 +152,10 @@ extern void sendData(LCDScreen* screen, uint8_t data);
extern void sendText(LCDScreen* screen, const char* text); extern void sendText(LCDScreen* screen, const char* text);
extern void sendChars(LCDScreen* screen, unsigned int len, ...); extern void sendChars(LCDScreen* screen, unsigned int len, ...);
extern void loadCustomChar(LCDScreen* screen, uint8_t cgram_addr, ...);
#define clearScreen(screen) sendCommand(screen, SCREEN_CLEAR) #define clearScreen(screen) sendCommand(screen, SCREEN_CLEAR)
#define returnCursor(screen) sendCommand(screen, CURSOR_RETURN) #define returnCursor(screen) sendCommand(screen, CURSOR_RETURN);
#define setWritingDirection(screen, direction) sendCommand(screen, INPUT_SET | direction) #define setWritingDirection(screen, direction) sendCommand(screen, INPUT_SET | direction)
#define setDisplaySettings(screen, display, cursor_shown, cursor_behaviour) sendCommand(screen, DISPLAY_SWITCH | display | cursor_shown | cursor_behaviour) #define setDisplaySettings(screen, display, cursor_shown, cursor_behaviour) sendCommand(screen, DISPLAY_SWITCH | display | cursor_shown | cursor_behaviour)
#define shiftCursor(screen, direction) sendCommand(screen, SHIFT | CURSOR_SHIFT | direction) #define shiftCursor(screen, direction) sendCommand(screen, SHIFT | CURSOR_SHIFT | direction)