OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SeeedLogo
(Results
1 - 4
of
4
) sorted by null
/hardware/bsp/intel/peripheral/libupm/examples/java/
SSD1327_oledSample.java
37
static private final int[]
SeeedLogo
= new int[]{0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x08,
129
byte[] image = new byte[
SeeedLogo
.length];
130
for (int i = 0; i <
SeeedLogo
.length; i++)
131
image[i] = (byte)
SeeedLogo
[i];
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
oled_ssd1327.js
178
var
SeeedLogo
= new LCD.uint8Array(logoArr.length);
180
SeeedLogo
.setitem(x, logoArr[x]);
184
myLcd.draw(
SeeedLogo
, 96 * 96 / 8);
/hardware/bsp/intel/peripheral/libupm/examples/python/
oled_ssd1327.py
175
SeeedLogo
= upmLCD.uint8Array(len(logoArr))
178
SeeedLogo
.__setitem__(x, logoArr[x])
182
myLCD.draw(
SeeedLogo
, 96 * 96 / 8);
/hardware/bsp/intel/peripheral/libupm/examples/c++/
ssd1327-oled.cxx
30
static uint8_t
SeeedLogo
[] ={
114
lcd->draw(
SeeedLogo
, 96 * 96 / 8);
Completed in 84 milliseconds