Lines Matching refs:command

60   command(CMD_DISPLAYOFF);  in EBOLED()
62 command(CMD_SETDISPLAYCLOCKDIV); in EBOLED()
63 command(0x80); in EBOLED()
65 command(CMD_SETMULTIPLEX); in EBOLED()
66 command(0x2f); in EBOLED()
68 command(CMD_SETDISPLAYOFFSET); in EBOLED()
69 command(0x0); // no offset in EBOLED()
71 command(CMD_SETSTARTLINE | 0x0); // line #0 in EBOLED()
73 command(CMD_CHARGEPUMP); // enable charge pump in EBOLED()
74 command(0x14); in EBOLED()
76 command(CMD_NORMALDISPLAY); in EBOLED()
77 command(CMD_DISPLAYALLONRESUME); in EBOLED()
79 command(CMD_SEGREMAP | 0x1); // reverse mapping (SEG0==COL127) in EBOLED()
80 command(CMD_COMSCANDEC); in EBOLED()
82 command(CMD_SETCOMPINS); // custom COM PIN mapping in EBOLED()
83 command(0x12); in EBOLED()
85 command(CMD_SETCONTRAST); in EBOLED()
86 command(0x8f); in EBOLED()
88 command(CMD_SETPRECHARGE); in EBOLED()
89 command(0xf1); in EBOLED()
91 command(CMD_SETVCOMDESELECT); in EBOLED()
92 command(0x40); in EBOLED()
94 command(CMD_DISPLAYON); in EBOLED()
101 command(CMD_SETPAGEADDRESS); // triple-byte cmd in EBOLED()
102 command(0x00); //Initial page address in EBOLED()
103 command(0x05); //Final page address in EBOLED()
106 command(CMD_SETCOLUMNADDRESS); // triple-byte cmd in EBOLED()
107 command(0x20); // this display has a horizontal offset of 20 columns in EBOLED()
108 command(0x5f); // 64 columns wide - 0 based 63 offset in EBOLED()
544 rv = command(CMD_MEMORYADDRMODE); in setAddressingMode()
545 rv = command(mode); in setAddressingMode()
550 mraa::Result EBOLED::command(uint8_t cmd) in command() function in EBOLED