-
Notifications
You must be signed in to change notification settings - Fork 28
/
OledInfo.js
143 lines (122 loc) · 2.91 KB
/
OledInfo.js
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
/*
* clock.js
* Display a digital clock on a small I2C connected display
*
* 2016-11-28 v1.0 Harald Kubota
*/
"use strict";
// NOTE: On newer versions of Raspberry Pi the I2C is set to 1,
// however on other platforms you may need to adjust if to
// another value, for example 0.
var bus = 1;
var i2c = require('i2c-bus'),
i2cBus = i2c.openSync(bus),
oled = require('oled-i2c-bus');
var font = require('oled-font-5x7');
const SIZE_X = 128,
SIZE_Y = 64;
var opts = {
width: SIZE_X,
height: SIZE_Y,
address: 0x3C
};
class Oled {
constructor() {
try {
this.oled = new oled(i2cBus, opts);
this.oled.clearDisplay();
this.oled.turnOnDisplay();
// set the refresh
this.shouldUpdate = true;
this.screenStatus = 0;
this.usb = 'waiting';
this.ble = 'waiting';
this.gear = -1;
this.grade = 0;
// run async
this.displayLoop();
} catch (err) {
// Print an error message a
console.log(err.message);
}
};
displayLoop() {
if (this.shouldUpdate == true) {
this.shouldUpdate = false;
this.Draw().then(() => setTimeout(() => this.displayLoop(), 5000));
} else {
setTimeout(() => this.displayLoop(), 2000);
}
};
async Draw() {
this.oled.clearDisplay(false);
this.oled.drawPixel([
[SIZE_X - 1, 0, 1],
[SIZE_X - 1, SIZE_Y - 1, 1],
[0, SIZE_Y - 1, 1],
[0, 0, 1]
], false);
this.oled.drawLine(1, 1, SIZE_X - 2, 1, 1, false);
this.oled.drawLine(SIZE_X - 2, 1, SIZE_X - 2, SIZE_Y - 2, 1, false);
this.oled.drawLine(SIZE_X - 2, SIZE_Y - 2, 1, SIZE_Y - 2, 1, false);
this.oled.drawLine(1, SIZE_Y - 2, 1, 1, 1, false);
// reste du message
switch (this.screenStatus) {
case 0:
this.displayStatus();
break;
case 1:
this.displaySimInfo()
break;
}
}
// Gear
displayStatus() {
this.oled.setCursor(10, 5);
this.oled.writeString(font, 1, 'Status', 1, false);
this.oled.setCursor(10, 20);
this.oled.writeString(font, 1, 'USB ' + this.usb, 1, false);
this.oled.setCursor(10, 38);
this.oled.writeString(font, 1, 'BLE ' + this.ble, 1, true);
}
// Gear
displaySimInfo() {
this.oled.setCursor(80, 5);
this.oled.writeString(font, 1, 'Gear', 1, false);
this.oled.setCursor(90, 25);
this.oled.writeString(font, 2, this.gear.toString(), 1, false);
this.oled.setCursor(20, 5);
this.oled.writeString(font, 1, 'pente', 1, false);
this.oled.setCursor(10, 25);
this.oled.writeString(font, 2, this.grade.toString() + '%', 1, true);
}
setStatus(status) {
this.screenStatus = status;
this.shouldUpdate = true;
}
// iusb
displayUSB(message) {
this.shouldUpdate = true;
this.usb = message;
}
// iusb
displayBLE(message) {
this.shouldUpdate = true;
this.ble = message;
}
// Gear
displayGear(gear) {
if (gear != this.gear) {
this.shouldUpdate = true;
this.gear = gear;
}
}
// Gear
displayGrade(grade) {
if (grade != this.grade) {
this.shouldUpdate = true;
this.grade = grade;
}
}
}
module.exports = Oled