Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Dann mach das doch genau so
- Zur besseren Lesbarkeit würde ich es aber so schreiben:
- void sendRAM( uint8_t image[] )
- {
- for(uint8_t x = 0 ; x < 64 ; x++)
- {
- for(uint8_t i = 0; i < 128 ; i++)
- {
- send(image[x+64*i]);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement