Update main.ts
This commit is contained in:
parent
f2f5a34bd5
commit
81b6a600cb
9
main.ts
9
main.ts
@ -297,7 +297,7 @@ namespace grove {
|
||||
}
|
||||
this.bit(0x7f, 0);
|
||||
}
|
||||
else
|
||||
else if(dispData < 10000)
|
||||
{
|
||||
this.bit(dispData % 10, 3);
|
||||
if(compare_01 > 90){
|
||||
@ -316,6 +316,13 @@ namespace grove {
|
||||
this.bit(Math.floor(dispData / 1000) % 10, 0);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
this.bit(9, 3);
|
||||
this.bit(9, 2);
|
||||
this.bit(9, 1);
|
||||
this.bit(9, 0);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user