minor colour change to help with rounding on 3bpp

master
Gordon Williams 2021-06-11 11:15:18 +01:00
parent ca12134ffe
commit 45b5ab231a
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
(() => {
function draw() {
var id = NRF.getAddress().substr().substr(12).split(":");
g.reset().setColor(0, 0.5, 1).setFont("6x8", 1);
g.reset().setColor(0, 0.49, 1).setFont("6x8", 1);
g.drawString(id[0], this.x+2, this.y+4, true);
g.drawString(id[1], this.x+2, this.y+14, true);
}