Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. void OLED_ClearVerLine(uint8_t chId, uint8_t chWdth) {
  2.  
  3. for (uint8_t i = 0; i < 8; i++) {
  4. for (uint8_t j = 0; (j + chId) < OLED_WIDTH && j < chWdth; j++) {
  5. s_chDispalyBuffer[chId + j][i] = 0;
  6. }
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement