-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtexttest.c
606 lines (545 loc) · 15.1 KB
/
texttest.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
/*
MIT No Attribution
Copyright 2022 Thomas Dettbarn ([email protected])
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, modify,
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
// Configuration starts here
//#define PATCHED_WIRING // comment in if you did the EXACT SAME wiring as I did ;)
//#define PINOUT_JETSONNANO // comment in if you connected the SH1106 directly to a Jetson Nano
//#define PINOUT_BANANAPI // comment in if you connected the SH1106 directly to a Banana Pi Zero
//#define PINOUT_RASPBERRYPI // comment in if you connected the SH1106 directly to a Raspberry Pi (Zero)
// Configuration ends here
#include <stdlib.h>
#include <signal.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <fcntl.h>
#define RETVAL_OK 0
#define RETVAL_NOK -1
#define GPIO_INPUT 0
#define GPIO_OUTPUT 1
#define MAXBUFLEN 64
#define DELAY_US(us) usleep((us));
#define DELAY_MS(ms) usleep((ms)*1000);
#define SPI_MODE0 0
#define SPI_MODE1 1
#define SPI_MODE2 2
#define SPI_MODE3 3
#define SPI_LSBFIRST 0
#define SPI_MSBFIRST 1
#define SPI_DELAY //DELAY_US(1)
#define BITMAP_HEIGHT 64
#define BITMAP_WIDTH 128
//// depends on the development board
// the way I understand this is, that the physical pins are mapped into
// the system memory. to accces those, there is some sort of memory
// offset maybe
#if defined(PINOUT_JETSONNANO)
#warning "This mapping is for the Jetson Nano board."
// Jetson Nano
// source: https://maker.pro/nvidia-jetson/tutorial/how-to-use-gpio-pins-on-jetson-nano-developer-kit
const short physicalmapping[41]={
0, // placeholder. there is no PIN0
-1, -1,// PIN1 =3.3V DC, PIN2 =5V DC
-1, -1,// 3,4
-1, -1,// 5,6
216, -1, //PIN7 = AUDIO_MCLK
-1, -1, //9,10
50, 79, //PIN11=UART_2_RTS,PIN12=I2S_4_CLK
14, -1, //13,14
194,232, //15,16
-1, 15, //17,18
16, -1, //19,20
17, 13, //21,22
18, 19, //23,24
-1, 20, //25,26
-1, -1, //27,28
149, -1, //29,30
200,168, //31,32
38, -1, //33,34
76, 51, //35,36
12, 77, //37,38
-1, 78 //39,40
};
#elif defined(PINOUT_BANANAPI)
#warning "This mapping is for the Banana Pi board."
// source: https://wiki.fw-web.de/doku.php?id=en:bpi-r64:gpio
const short physicalmapping[41]={
0, // placeholder. there is no PIN0
-1, -1,// PIN1 =3.3V DC, PIN2 =5V DC
56, -1,// 3,4
55, -1,// 5,6
101, 59, //PIN7 = PWM7,8
-1, 60,// 9,10
51, -1, //PIN11=UART_2_RTS,PIN12=I2S_4_CLK
52, -1, //13,14
98, 61, //15,16
-1, 62, //17,18
68, -1, //19,20
69, 63, //21,22
67, 70, //23,24
-1, 66, //25,26
58, 57, //27,28
85, -1, //29,30
82, 64, //31,32
-1, -1, //33,34
-1, 65, //35,36
86, -1, //37,38
-1, -1 //39,40
};
#elif defined(PINOUT_RASPBERRYPI)
#warning "This mapping is for the Raspberry Pi (Zero) board"
// source: https://www.theengineeringprojects.com/wp-content/uploads/2021/03/raspberry-pi-zero-5.png
// NOTE: GPIO16 was actually missing in the diagram.
const short physicalmapping[41]={
0, // placeholder. there is no PIN0
-1, -1,// PIN1 =3.3V DC, PIN2 =5V DC
2, -1,// 3,4
3, -1,// 5,6
4, 14, //PIN7 = PWM7,8
-1, 15,// 9,10
17, 18, //PIN11=UART_2_RTS,PIN12=I2S_4_CLK
27, -1, //13,14
22, 23, //15,16
-1, 24, //17,18
10, -1, //19,20
9, 25, //21,22
11, 8, //23,24
-1, 7, //25,26
0, 1, //27,28
5, -1, //29,30
6, 12, //31,32
13, -1, //33,34
19, 16, //35,36
26, 20, //37,38
-1, 21 //39,40
};
#else
#error "The physical pins need to be mapped to the GPIO numbers. For some reason, those numbers are different for each board out there. So please have a look at the sourcecode, lines 21-26, and select the one that works best for you."
const int physicalmapping[41]={0};
#endif
// this is the GPIO pinout for the waveshare OLED 1.3 SH1106 hat
// source: https://www.waveshare.com/1.3inch-oled-hat.htm
#ifdef PATCHED_WIRING
// Apparently, not every Key was mapped to a working GPIO pin.
// So I did some rewiring. This is a setup that works
#define PIN_LEFT (physicalmapping[ 3]) // OLED pin 29
#define PIN_UP (physicalmapping[ 5]) // OLED pin 31
#define PIN_FIRE (physicalmapping[ 7]) // OLED pin 33
#define PIN_DOWN (physicalmapping[29]) // OLED pin 35
#define PIN_RIGHT (physicalmapping[31]) // OLED pin 37
#define PIN_KEY1 (physicalmapping[27]) // OLED pin 36
#define PIN_KEY2 (physicalmapping[24]) // OLED pin 38
#define PIN_KEY3 (physicalmapping[26]) // OLED pin 40
#define PIN_BL (physicalmapping[16]) // OLED pin 12
#define PIN_DC (physicalmapping[18])
#define PIN_RST (physicalmapping[22])
#define PIN_CS (physicalmapping[28]) // OLED pin 24
#define PIN_MOSI (physicalmapping[19])
#define PIN_MISO (physicalmapping[21])
#define PIN_SCLK (physicalmapping[23])
#else
#define PIN_LEFT (physicalmapping[29])
#define PIN_UP (physicalmapping[31])
#define PIN_FIRE (physicalmapping[33])
#define PIN_DOWN (physicalmapping[35])
#define PIN_RIGHT (physicalmapping[37])
#define PIN_KEY1 (physicalmapping[36])
#define PIN_KEY2 (physicalmapping[38])
#define PIN_KEY3 (physicalmapping[40])
#define PIN_BL (physicalmapping[12])
#define PIN_DC (physicalmapping[18])
#define PIN_RST (physicalmapping[22])
#define PIN_CS (physicalmapping[24])
#define PIN_MOSI (physicalmapping[19])
#define PIN_MISO (physicalmapping[21])
#define PIN_SCLK (physicalmapping[23])
#endif
int gpio_export(int pin)
{
int fd;
char buffer[MAXBUFLEN];
int len;
fd=open("/sys/class/gpio/export", O_WRONLY);
if (fd<0)
{
fprintf(stderr,"GPIO export for pin %d failed\n",pin);
return RETVAL_NOK;
}
len=snprintf(buffer,MAXBUFLEN,"%d",pin);
write(fd,buffer,len);
close(fd);
return RETVAL_OK;
}
int gpio_unexport(int pin)
{
int fd;
char buffer[MAXBUFLEN];
int len;
fd=open("/sys/class/gpio/unexport", O_WRONLY);
if (fd<0)
{
fprintf(stderr,"GPIO unexport for pin %d failed\n",pin);
return RETVAL_NOK;
}
len=snprintf(buffer,MAXBUFLEN,"%d",pin);
write(fd,buffer,len);
close(fd);
return RETVAL_OK;
}
int gpio_direction(int pin,int direction)
{
int fd;
char buffer[MAXBUFLEN];
snprintf(buffer,MAXBUFLEN,"/sys/class/gpio/gpio%d/direction",pin);
fd=open(buffer,O_WRONLY);
if (fd<0)
{
fprintf(stderr,"GPIO direction for pin %d cannot be set\n",pin);
return RETVAL_NOK;
}
if (direction==GPIO_INPUT)
{
write(fd,"in",2);
} else if (direction==GPIO_OUTPUT) {
write(fd,"out",3);
} else {
fprintf(stderr,"Type error for direction for pin %d (%d unknown)\n",pin,direction);
}
close(fd);
return RETVAL_OK;
}
int gpio_write(int pin,int value)
{
int fd;
char buffer[MAXBUFLEN];
snprintf(buffer,MAXBUFLEN,"/sys/class/gpio/gpio%d/value",pin);
fd=open(buffer,O_WRONLY);
if (fd<0)
{
fprintf(stderr,"Cannot access GPIO pin %d\n",pin);
return RETVAL_NOK;
}
write(fd,value?"1":"0",1);
close(fd);
return RETVAL_OK;
}
int gpio_read(int pin,int* value)
{
int fd;
char buffer[MAXBUFLEN];
int len;
snprintf(buffer,MAXBUFLEN,"/sys/class/gpio/gpio%d/value",pin);
fd=open(buffer,O_RDONLY);
if (fd<0)
{
fprintf(stderr,"Cannot access GPIO pin %d\n",pin);
return RETVAL_NOK;
}
len=read(fd,buffer,3);
if (len<0)
{
fprintf(stderr,"Unable to read from pin %d\n",pin);
close(fd);
return RETVAL_NOK;
}
*value=atoi(buffer);
close(fd);
return RETVAL_OK;
}
int gpio_pins_up()
{
int retval;
retval=RETVAL_OK;
// start with the GPIO configuration
retval|=gpio_export(PIN_RST);
retval|=gpio_export(PIN_DC);
retval|=gpio_export(PIN_BL);
retval|=gpio_export(PIN_CS);
retval|=gpio_direction(PIN_RST, GPIO_OUTPUT);
retval|=gpio_direction(PIN_DC, GPIO_OUTPUT);
retval|=gpio_direction(PIN_BL, GPIO_OUTPUT);
retval|=gpio_direction(PIN_CS, GPIO_OUTPUT);
// continue with the SPI pins
retval|=gpio_export(PIN_SCLK);
retval|=gpio_export(PIN_MOSI);
retval|=gpio_export(PIN_MISO);
retval|=gpio_direction(PIN_SCLK, GPIO_OUTPUT);
retval|=gpio_direction(PIN_MOSI, GPIO_OUTPUT);
retval|=gpio_direction(PIN_MISO, GPIO_INPUT);
return retval;
}
int gpio_pins_down()
{
int retval;
retval=RETVAL_OK;
retval|=gpio_write(PIN_RST,0);
retval|=gpio_write(PIN_DC,0);
retval|=gpio_write(PIN_BL,0);
retval|=gpio_unexport(PIN_RST);
retval|=gpio_unexport(PIN_DC);
retval|=gpio_unexport(PIN_BL);
retval|=gpio_unexport(PIN_CS);
retval|=gpio_write(PIN_SCLK,0);
retval|=gpio_write(PIN_MOSI,0);
retval|=gpio_unexport(PIN_SCLK);
retval|=gpio_unexport(PIN_MOSI);
retval|=gpio_unexport(PIN_MISO);
return retval;
}
void spi_writebyte(unsigned char byte,int mode,int msbfirst)
{
int cpol;
int cpol0;
int cpha;
int bits;
switch (mode)
{
case SPI_MODE0: cpol=0;cpha=0;break;
case SPI_MODE1: cpol=0;cpha=1;break;
case SPI_MODE2: cpol=1;cpha=0;break;
case SPI_MODE3: cpol=1;cpha=1;break;
}
cpol0=cpol;
gpio_write(PIN_SCLK,cpol);
if (!cpha)
{
cpol=1-cpol; // when CPHA=1, the new value is being sampled at the first clock edge
SPI_DELAY;
}
for (bits=0;bits<8;bits++)
{
int bit;
if (msbfirst==SPI_MSBFIRST)
{
bit=(byte>>7)&1;
byte<<=1;
} else {
bit=(byte)&1;
byte>>=1;
}
gpio_write(PIN_MOSI,bit); // set the value
gpio_write(PIN_SCLK,cpol); // 1st clock edge
cpol=1-cpol;
SPI_DELAY;
gpio_write(PIN_SCLK,cpol); // 2nd clock edge
cpol=1-cpol;
SPI_DELAY;
}
gpio_write(PIN_SCLK,cpol0); // make sure that the SPI clk is the same as before
}
void oled_reset()
{
gpio_write(PIN_DC,0);
gpio_write(PIN_RST,1);
DELAY_MS(200);
gpio_write(PIN_RST,0);
DELAY_MS(200);
gpio_write(PIN_RST,1);
DELAY_MS(200);
}
void oled_init()
{
const unsigned char oled_commands[]={
0xae,0x02,0x10,0x40, 0x81,0xa0,0xc0,0xa6, // turn off oled panel, set low column addr, set high column addr, set start line, set contrast control register, set SEG/Column Mapping, Set COM/ROW scan direction, set normal display
0xa8,0x3f,0xd3,0x00, 0xd5,0x80,0xd9,0xf1, // set multiplex ration 1:64, 1/64 duty, set display offset, not offset, set display clock, set divide clock as 100frames/sec, set pre-charge period, set pre-chare as 15 clocks & discarge as 1 clock
0xda,0x12,0xdb,0x40, 0x20,0x02,0xa4,0xa6, // set com pins hardare, ???, set vcomh, set vcom deselect level, set page addr mode, ???, disable entire display on, disable inverse display on,
0xaf // turn on oled panel
};
int i;
gpio_write(PIN_DC,0);
for (i=0;i<sizeof(oled_commands);i++)
{
spi_writebyte(oled_commands[i],SPI_MODE0,SPI_MSBFIRST);
}
}
void oled_text(char *text,int line,int inverted)
{
const unsigned long long font[95]={
0x0000000000000000,//
0x0000065f5f060000,// !
0x0000030300030300,// "
0x00147f7f147f7f14,// #
0x0000123a6b6b2e24,// $
0x0062660c18306646,// %
0x00487a375d4f7a30,// &
0x0000000000030704,// '
0x00000041633e1c00,// (
0x0000001c3e634100,// )
0x082a3e1c1c3e2a08,// *
0x000008083e3e0808,// +
0x0000000060e08000,// ,
0x0000080808080808,// -
0x0000000060600000,// .
0x000103060c183060,// /
0x003e7f4d59717f3e,// 0
0x000040407f7f4240,// 1
0x0000666f49597362,// 2
0x0000367f49496322,// 3
0x00507f7f53161c18,// 4
0x0000397d45456727,// 5
0x00003079494b7e3c,// 6
0x0000070f79710303,// 7
0x0000367f49497f36,// 8
0x00001e3f69494f06,// 9
0x0000000066660000,// :
0x0000000066e68000,// ;
0x0000004163361c08,// <
0x0000242424242424,// =
0x0000081c36634100,// >
0x0000060f59510302,// ?
0x001e1f5d5d417f3e,// @
0x00007c7e13137e7c,// A
0x00367f49497f7f41,// B
0x0022634141633e1c,// C
0x001c3e63417f7f41,// D
0x0063415d497f7f41,// E
0x0003011d497f7f41,// F
0x0072735141633e1c,// G
0x00007f7f08087f7f,// H
0x000000417f7f4100,// I
0x00013f7f41407030,// J
0x0063771c087f7f41,// K
0x00706040417f7f41,// L
0x007f7f0e1c0e7f7f,// M
0x007f7f180c067f7f,// N
0x001c3e6341633e1c,// O
0x00060f09497f7f41,// P
0x00005e7f71213f1e,// Q
0x00667f19097f7f41,// R
0x00003273594d6f26,// S
0x000003417f7f4103,// T
0x00007f7f40407f7f,// U
0x00001f3f60603f1f,// V
0x007f7f3018307f7f,// W
0x0043673c183c6743,// X
0x0000074f78784f07,// Y
0x0073674d59716347,// Z
0x00000041417f7f00,// [
0x006030180c060301,//
0x0000007f7f414100,// ]
0x00080c0603060c08,// ^
0x8080808080808080,// _
0x0000000407030000,// `
0x0040783c54547420,// a
0x00307848483f7f41,// b
0x0000286c44447c38,// c
0x00407f3f49487830,// d
0x0000185c54547c38,// e
0x00000203497f7e48,// f
0x00047cf8a4a4bc98,// g
0x00787c04087f7f41,// h
0x000000407d7d4400,// i
0x00007dfd8080e060,// j
0x00446c38107f7f41,// k
0x000000407f7f4100,// l
0x00787c1c38187c7c,// m
0x0000787c04047c7c,// n
0x0000387c44447c38,// o
0x00183c24a4f8fc84,// p
0x0084fcf8a4243c18,// q
0x00181c044c787c44,// r
0x0000247454545c48,// s
0x000024447f3e0400,// t
0x00407c3c40407c3c,// u
0x00001c3c60603c1c,// v
0x003c7c7038707c3c,// w
0x00446c3810386c44,// x
0x00007cfca0a0bc9c,// y
0x0000644c5c74644c,// z
0x00004141773e0808,// {
0x0000007777000000,// |
0x000008083e774141,// }
0x0001030203010302,// ~
};
#define TEXT_WIDTH 16
#define FONT_XRES 8
int i;
int j;
gpio_write(PIN_DC,0); // write command
spi_writebyte(0xb0+line,SPI_MODE0,SPI_MSBFIRST); // set page address
spi_writebyte(0x02,SPI_MODE0,SPI_MSBFIRST); // set low column address
spi_writebyte(0x10,SPI_MODE0,SPI_MSBFIRST); // set high column address
gpio_write(PIN_DC,1); // write data
for (i=0;i<TEXT_WIDTH;i++)
{
unsigned long long x;
x=font[text[i]-' '];
if (inverted) x=~x;
for (j=0;j<FONT_XRES;j++)
{
spi_writebyte(x&0xff,SPI_MODE0,SPI_MSBFIRST);
x>>=8;
}
}
}
int sh1106_up()
{
int retval;
retval=RETVAL_OK;
retval|=gpio_pins_up();
// spi mode 0
// spi master
// spi clock div 2
// spi msbfirst
// ?? tell the device it should take orders from SPI??
retval|=gpio_write(PIN_BL,1);
retval|=gpio_write(PIN_CS,0);
if (retval==RETVAL_OK)
{
oled_reset();
oled_init();
}
return retval;
}
int sh1106_down()
{
return gpio_pins_down();
}
void graceFulExit(int signal_number)
{
printf("shutting down display...\n");
sh1106_down();
exit(0);
}
int main(int argc,char** argv)
{
int i;
char buf[16];
signal(SIGINT, graceFulExit);
if (sh1106_up())
{
fprintf(stderr,"unable to start up display. sorry");
return 1;
}
oled_text("----------------",0,0);
oled_text("- HELL0 -",1,0);
oled_text("- WORLD -",2,0);
oled_text("----------------",3,0);
oled_text("-Get vaccinated-",4,0);
oled_text("-Better safe -",5,0);
oled_text("-than sorry. -",6,0);
oled_text("----------------",7,0);
// make one line blink
for (i=0;i<100;i++)
{
oled_text("-Get vaccinated-",4,1);
oled_text("-Get vaccinated-",4,0);
printf("%2d\n",i);
}
printf("press Enter to quit\n");
fgets(buf,sizeof(buf),stdin);
graceFulExit(0);
return 0;
}