Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node version 10.x
uses: actions/setup-node@v1
- name: Setup Node version 16.19.0
uses: actions/setup-node@v3
with:
node-version: '10.x'
node-version: '16.19.0'
check-latest: true
- name: Yarn install, webpacking
run: |
Expand Down
1,153 changes: 1,119 additions & 34 deletions app/firmwares/dalgona.hex

Large diffs are not rendered by default.

33 changes: 17 additions & 16 deletions app/modules/KKMOO.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ class KKMOO extends BaseModule {
super();

this.sendToEntry = "";
this.receiveData = "";
this.receiveData;
this.isReceived = false;
this.isPlaying = false;
this.isPlaying_old = false;
this.cmdProc = "";
this.sendBuffer = [];
this.test;
this.test = 0;
// ...
}
/*
Expand All @@ -36,14 +36,15 @@ class KKMOO extends BaseModule {
이 두 함수가 정의되어있어야 로직이 동작합니다. 필요없으면 작성하지 않아도 됩니다.
*/
requestInitialData(sp) {
this.isConnect = true;
if (!this.sp) {
this.sp = sp;
if (!this.isConnect) {
this.isConnect = true;
if (!this.sp) {
this.sp = sp;
}
const initTX = Buffer.from("^ET");
sp.write(initTX);
}
const initTX = Buffer.from("^ET");
sp.write(initTX);
return null;

}


Expand All @@ -63,12 +64,11 @@ class KKMOO extends BaseModule {
}
}
requestRemoteData(handler) {
if(this.isPlaying != this.isPlaying_old){
handler.write("data",this.isPlaying);
/*if(this.isPlaying != this.isPlaying_old){
this.isPlaying_old = this.isPlaying;
handler.write("data",this.isPlaying);
//console.log(this.isPlaying);

}
handler.write("data",this.isPlaying);
}*/
}

// 엔트리에서 받은 데이터에 대한 처리
Expand All @@ -79,7 +79,6 @@ class KKMOO extends BaseModule {
else{
this.receiveData = null;
}
//console.log(handler);
}

requestLocalData(){
Expand All @@ -101,7 +100,8 @@ class KKMOO extends BaseModule {

var cmd = "^AN"+msg;
this.sp.write(Buffer.from(cmd));
//console.log(cmd);
this.sp.flush()
console.log(cmd);

break;
case "IR":
Expand Down Expand Up @@ -144,7 +144,7 @@ class KKMOO extends BaseModule {
break;
}
}

this.receiveData = null;

}
disconnect(connect){
Expand All @@ -153,6 +153,7 @@ class KKMOO extends BaseModule {
setTimeout(()=>{
connect.close();
},500);
this.isConnect = false;
}
lostController() { }

Expand Down
Loading