Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version up 1.9.56 #752

Merged
merged 10 commits into from
Jul 23, 2024
Merged

version up 1.9.56 #752

merged 10 commits into from
Jul 23, 2024

Conversation

Tnks2U
Copy link
Contributor

@Tnks2U Tnks2U commented Jul 23, 2024

@Tnks2U Tnks2U requested a review from kimorkim July 23, 2024 07:40
@Tnks2U Tnks2U merged commit 551009e into master Jul 23, 2024
1 check passed
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

eslint

⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

SETTING_VOICE_CMD: 0x0200,


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

// Genernal Request


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

GET_STATUS: 0xFFFE,


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

// PING Request


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

TELLIOT_PING: 0xFFFF,


⚠️ [eslint] <semi> reported by reviewdog 🐶
Missing semicolon.


⚠️ [eslint] <semi> reported by reviewdog 🐶
Missing semicolon.

const TELLIOT_PACKET_HEADER = 0xAA55


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

constructor () {


⚠️ [eslint] <space-before-function-paren> reported by reviewdog 🐶
Unexpected space before function parentheses.

constructor () {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this.sp = null;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._sendBuffers = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._receiveBuffer = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._pingpacket = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._stt_data = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._deviceid = 0x0000;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._loglevel = Loglevel.DEBUG;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._isConnected = false;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._sendEntry = false;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this.state = {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <comma-dangle> reported by reviewdog 🐶
Missing trailing comma.

rfid: []
}


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <semi> reported by reviewdog 🐶
Missing semicolon.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, 'Initialize');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._lasttime = Date.now();


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, 'setSerialPort');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, 'requestInitialData Telliot Base');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._make_telliot_ping_packet();


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

return this._pingpacket;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, 'checkInitialData Telliot Base');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

if (this._sendEntry) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

this._writeDebug(Loglevel.DEBUG, 'requestRemoteData(send to browser)');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

handler.write("state", {sensors: this.state.sensors, rfid: this.state.rfid});


⚠️ [eslint] <quotes> reported by reviewdog 🐶
Strings must use singlequote.

handler.write("state", {sensors: this.state.sensors, rfid: this.state.rfid});


⚠️ [eslint] <object-curly-spacing> reported by reviewdog 🐶
A space is required after '{'.

handler.write("state", {sensors: this.state.sensors, rfid: this.state.rfid});


⚠️ [eslint] <object-curly-spacing> reported by reviewdog 🐶
A space is required before '}'.

handler.write("state", {sensors: this.state.sensors, rfid: this.state.rfid});


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

this._sendEntry = false;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

handler.write("state", {sensors: [], rfid: []});


⚠️ [eslint] <quotes> reported by reviewdog 🐶
Strings must use singlequote.

handler.write("state", {sensors: [], rfid: []});


⚠️ [eslint] <object-curly-spacing> reported by reviewdog 🐶
A space is required after '{'.

handler.write("state", {sensors: [], rfid: []});


⚠️ [eslint] <object-curly-spacing> reported by reviewdog 🐶
A space is required before '}'.

handler.write("state", {sensors: [], rfid: []});


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

//if (this._stt_data.length > 0) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

// handler.write('telliot_talk', this._stt_data);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

// this._stt_data = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

const keys = Object.keys(handler.serverData);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

if (keys.length == 0)


⚠️ [eslint] <curly> reported by reviewdog 🐶
Expected { after 'if' condition.

if (keys.length == 0)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, 'handleRemoteData : ' + keys);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'handleRemoteData : ' + keys);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

keys.forEach(key => this._processRequestData(key, handler.read(key)));


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

if (this.sp === null)


⚠️ [eslint] <curly> reported by reviewdog 🐶
Expected { after 'if' condition.

if (this.sp === null)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

if (this._pingpacket.length === 0) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

this._make_telliot_ping_packet();


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <max-len> reported by reviewdog 🐶
This line has a length of 121. Maximum allowed is 120.

//this._writeDebug(Loglevel.DEBUG, 'requestLocalData : Send Ping Data (size = ' + this._pingpacket.length + ')');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

//this._writeDebug(Loglevel.DEBUG, 'requestLocalData : Send Ping Data (size = ' + this._pingpacket.length + ')');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this.sp.write(this._pingpacket);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

// ����̽����� �� �����͸� ó���ϴ� ����. ���⼭�� ó���� �����Ͱ� ���� ��ŵ�Ͽ���.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

//this._writeDebug(Loglevel.DEBUG, 'handleLocalData (from device)');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this.state.sensors = []


⚠️ [eslint] <semi> reported by reviewdog 🐶
Missing semicolon.

this.state.sensors = []
this.state.rfid = []


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this.state.rfid = []


⚠️ [eslint] <semi> reported by reviewdog 🐶
Missing semicolon.

this.state.rfid = []
this._processReveivedData(data);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._processReveivedData(data);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

//this._receiveBuffer.push(...data);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

//while(this._receiveBuffer.length > 0) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

// let length = this._receiveBuffer.length;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

// this._processReveivedData(this._receiveBuffer);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

// if (length == this._receiveBuffer.length)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

// this._receiveBuffer.splice(0, 1);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, 'disconnect Telliot Base');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

this.sp = null;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, 'reset');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

/*************************************************************************


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_checkLogLevel(level)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <brace-style> reported by reviewdog 🐶
Opening curly brace does not appear on the same line as controlling statement.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

if (level > this._loglevel) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

return false;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

/*************************************************************************


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_writeDebug(level, message)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <brace-style> reported by reviewdog 🐶
Opening curly brace does not appear on the same line as controlling statement.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

if (this._checkLogLevel(level) == true) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

console.log('[', level, '] : ', message);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

/*************************************************************************


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_writeArrayData(level, buffer, iscommand) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

if (this._checkLogLevel(level) == true) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

var messages = Array.from(buffer, function (byte) {


⚠️ [eslint] <no-var> reported by reviewdog 🐶
Unexpected var, use let or const instead.

var messages = Array.from(buffer, function (byte) {
return ('0' + (byte & 0xff).toString(16)).slice(-2);
}).join(' ');


⚠️ [eslint] <prefer-arrow-callback> reported by reviewdog 🐶
Unexpected function expression.

var messages = Array.from(buffer, function (byte) {
return ('0' + (byte & 0xff).toString(16)).slice(-2);
}).join(' ');


⚠️ [eslint] <space-before-function-paren> reported by reviewdog 🐶
Unexpected space before function parentheses.

var messages = Array.from(buffer, function (byte) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 9 tabs.

return ('0' + (byte & 0xff).toString(16)).slice(-2);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

return ('0' + (byte & 0xff).toString(16)).slice(-2);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 8 tabs.

}).join(' ');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

if (iscommand)


⚠️ [eslint] <curly> reported by reviewdog 🐶
Expected { after 'if' condition.

if (iscommand)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

console.log(' [ command ] : ' + messages);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

console.log(' [ command ] : ' + messages);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <curly> reported by reviewdog 🐶
Expected { after 'else'.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

console.log(' [ event ] : ' + messages);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

console.log(' [ event ] : ' + messages);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

/*************************************************************************


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_isTelliotPacket(data)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <brace-style> reported by reviewdog 🐶
Opening curly brace does not appear on the same line as controlling statement.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

if(data[0] == 0xAA && data[1] == 0x55)


⚠️ [eslint] <curly> reported by reviewdog 🐶
Expected { after 'if' condition.

if(data[0] == 0xAA && data[1] == 0x55)


⚠️ [eslint] <keyword-spacing> reported by reviewdog 🐶
Expected space(s) after "if".

if(data[0] == 0xAA && data[1] == 0x55)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <curly> reported by reviewdog 🐶
Expected { after 'else'.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

return false;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

/*************************************************************************


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_add_CRC_data(buffer)


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier '_add_CRC_data' is not in camel case.

_add_CRC_data(buffer)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <brace-style> reported by reviewdog 🐶
Opening curly brace does not appear on the same line as controlling statement.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

const crcdata = [0x00, 0x00];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <no-var> reported by reviewdog 🐶
Unexpected var, use let or const instead.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

const len = buffer.length;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, '_add_CRC_data : buffer length = ' + len);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, '_add_CRC_data : buffer length = ' + len);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

for (let index = 0; index < len; index++) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

crc += buffer[index];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, '_add_CRC_data : CRC Data = ' + crc);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, '_add_CRC_data : CRC Data = ' + crc);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

crcdata[0] = crc;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

crcdata[1] = crc >> 8;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer.push(...crcdata);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

/*************************************************************************


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_request_telliot_command(cmd, param, param_length = 0)


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier '_request_telliot_command' is not in camel case.

_request_telliot_command(cmd, param, param_length = 0)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <brace-style> reported by reviewdog 🐶
Opening curly brace does not appear on the same line as controlling statement.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

const buffer = []; //Buffer.alloc(8);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

len = param_length + 2; // length + CRC


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'param_length' is not in camel case.

len = param_length + 2; // length + CRC


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, 'make_Command : CMD = ' + cmd);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'make_Command : CMD = ' + cmd);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer.push(TELLIOT_PACKET_HEADER, TELLIOT_PACKET_HEADER >> 8);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer.push(this._deviceid, this._deviceid >> 8);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer.push(cmd, cmd >> 8);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer.push(len, len >> 8);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

if (param_length > 0) {


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'param_length' is not in camel case.

if (param_length > 0) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

this._writeDebug(Loglevel.DEBUG, 'make_Command : param length = ' + param_length);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'make_Command : param length = ' + param_length);


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'param_length' is not in camel case.

this._writeDebug(Loglevel.DEBUG, 'make_Command : param length = ' + param_length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

buffer.push(...param);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._sendBuffers.length = 0;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._sendBuffers.push(...buffer);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._add_CRC_data(this._sendBuffers);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this.sp.write(this._sendBuffers);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

/*************************************************************************


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_make_telliot_ping_packet()


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier '_make_telliot_ping_packet' is not in camel case.

_make_telliot_ping_packet()


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <brace-style> reported by reviewdog 🐶
Opening curly brace does not appear on the same line as controlling statement.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

const buffer = Buffer.alloc(8);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

len = 2; // CRC


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer[0] = TELLIOT_PACKET_HEADER;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer[1] = TELLIOT_PACKET_HEADER >> 8;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer[2] = this._deviceid;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer[3] = this._deviceid >> 8;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer[4] = Instruction.TELLIOT_PING;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer[5] = Instruction.TELLIOT_PING >> 8;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer[6] = len;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

buffer[7] = len >> 8;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._pingpacket.length = 0;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._pingpacket.push(...buffer);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._add_CRC_data(this._pingpacket);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

/*************************************************************************


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_processReveivedData (data) {


⚠️ [eslint] <space-before-function-paren> reported by reviewdog 🐶
Unexpected space before function parentheses.

_processReveivedData (data) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

var received_data = data.slice();


⚠️ [eslint] <no-var> reported by reviewdog 🐶
Unexpected var, use let or const instead.

var received_data = data.slice();


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'received_data' is not in camel case.

var received_data = data.slice();


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

if (this._isTelliotPacket(received_data) === true) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

let telliot_event = received_data[4] | received_data[5] << 8;


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'telliot_event' is not in camel case.

let telliot_event = received_data[4] | received_data[5] << 8;


⚠️ [eslint] <prefer-const> reported by reviewdog 🐶
'telliot_event' is never reassigned. Use 'const' instead.

let telliot_event = received_data[4] | received_data[5] << 8;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

let len = received_data[6] | received_data[7] << 8;


⚠️ [eslint] <prefer-const> reported by reviewdog 🐶
'len' is never reassigned. Use 'const' instead.

let len = received_data[6] | received_data[7] << 8;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

if (telliot_event != 0xFFFF) {


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'telliot_event' is not in camel case.

if (telliot_event != 0xFFFF) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

this._writeArrayData(Loglevel.DEBUG, received_data, false);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

this._writeDebug(Loglevel.DEBUG, 'Event : ' + telliot_event + ' len : ' + len);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'Event : ' + telliot_event + ' len : ' + len);


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'telliot_event' is not in camel case.

this._writeDebug(Loglevel.DEBUG, 'Event : ' + telliot_event + ' len : ' + len);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

switch (telliot_event)


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'telliot_event' is not in camel case.

switch (telliot_event)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <brace-style> reported by reviewdog 🐶
Opening curly brace does not appear on the same line as controlling statement.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

case TelliotEvent.EVENT_CMD_STATUS :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._writeDebug(Loglevel.DEBUG, 'Received the EVENT_CMD_STATUS');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

case TelliotEvent.EVENT_CMD_VOICE_TO_TEXT :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._stt_data = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._stt_data.push(data.slice(8, len - 2));


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

case TelliotEvent.EVENT_CMD_SENSOR_DETECTED :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

let sensor_data = received_data[8] | received_data[9] << 8;


⚠️ [eslint] <no-case-declarations> reported by reviewdog 🐶
Unexpected lexical declaration in case block.

let sensor_data = received_data[8] | received_data[9] << 8;


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'sensor_data' is not in camel case.

let sensor_data = received_data[8] | received_data[9] << 8;


⚠️ [eslint] <prefer-const> reported by reviewdog 🐶
'sensor_data' is never reassigned. Use 'const' instead.

let sensor_data = received_data[8] | received_data[9] << 8;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._writeDebug(Loglevel.DEBUG, 'Received the EVENT_CMD_SENSOR_DETECTED');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._writeDebug(Loglevel.DEBUG, 'Sensor Data : ' + sensor_data);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'Sensor Data : ' + sensor_data);


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'sensor_data' is not in camel case.

this._writeDebug(Loglevel.DEBUG, 'Sensor Data : ' + sensor_data);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this.state.sensors = sensor_data;


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'sensor_data' is not in camel case.

this.state.sensors = sensor_data;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._sendEntry = true;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

case TelliotEvent.EVENT_CMD_RFID_TAG_DETECTED :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

let tag_id = received_data[8] | received_data[9] << 8;


⚠️ [eslint] <no-case-declarations> reported by reviewdog 🐶
Unexpected lexical declaration in case block.

let tag_id = received_data[8] | received_data[9] << 8;


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'tag_id' is not in camel case.

let tag_id = received_data[8] | received_data[9] << 8;


⚠️ [eslint] <prefer-const> reported by reviewdog 🐶
'tag_id' is never reassigned. Use 'const' instead.

let tag_id = received_data[8] | received_data[9] << 8;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._writeDebug(Loglevel.DEBUG, 'Received the EVENT_CMD_RFID_TAG_DETECTED');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._writeDebug(Loglevel.DEBUG, 'Tag ID : ' + tag_id);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'Tag ID : ' + tag_id);


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'tag_id' is not in camel case.

this._writeDebug(Loglevel.DEBUG, 'Tag ID : ' + tag_id);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this.state.rfid[tag_id - 1] = 1;


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'tag_id' is not in camel case.

this.state.rfid[tag_id - 1] = 1;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._sendEntry = true;


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

data.slice(0,1);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_toUTF8Array(str) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

let utf8 = [];


⚠️ [eslint] <prefer-const> reported by reviewdog 🐶
'utf8' is never reassigned. Use 'const' instead.

let utf8 = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

for (let i = 0; i < str.length; i++) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

let charcode = str.charCodeAt(i);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

if (charcode < 0x80) utf8.push(charcode);


⚠️ [eslint] <curly> reported by reviewdog 🐶
Expected { after 'if' condition.

if (charcode < 0x80) utf8.push(charcode);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

else if (charcode < 0x800) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

utf8.push(0xc0 | (charcode >> 6),


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <brace-style> reported by reviewdog 🐶
Closing curly brace does not appear on the same line as the subsequent block.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

else if (charcode < 0xd800 || charcode >= 0xe000) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

utf8.push(0xe0 | (charcode >> 12),


⚠️ [eslint] <space-infix-ops> reported by reviewdog 🐶
Operator '>>' must be spaced.

0x80 | ((charcode>>6) & 0x3f),


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <brace-style> reported by reviewdog 🐶
Closing curly brace does not appear on the same line as the subsequent block.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

// surrogate pair


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

// UTF-16 encodes 0x10000-0x10FFFF by


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

// subtracting 0x10000 and splitting the


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

// 20 bits of 0x0-0xFFFFF into two halves


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

charcode = 0x10000 + (((charcode & 0x3ff)<<10)


⚠️ [eslint] <space-infix-ops> reported by reviewdog 🐶
Operator '<<' must be spaced.

charcode = 0x10000 + (((charcode & 0x3ff)<<10)


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

utf8.push(0xf0 | (charcode >>18),


⚠️ [eslint] <space-infix-ops> reported by reviewdog 🐶
Operator '>>' must be spaced.

utf8.push(0xf0 | (charcode >>18),


⚠️ [eslint] <space-infix-ops> reported by reviewdog 🐶
Operator '>>' must be spaced.

0x80 | ((charcode>>12) & 0x3f),


⚠️ [eslint] <space-infix-ops> reported by reviewdog 🐶
Operator '>>' must be spaced.

0x80 | ((charcode>>6) & 0x3f),


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

/*************************************************************************


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_predefined_action(action_id, action_value) {


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier '_predefined_action' is not in camel case.

_predefined_action(action_id, action_value) {


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'action_id' is not in camel case.

_predefined_action(action_id, action_value) {


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'action_value' is not in camel case.

_predefined_action(action_id, action_value) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

var param = { action_id, action_value };


⚠️ [eslint] <no-var> reported by reviewdog 🐶
Unexpected var, use let or const instead.

var param = { action_id, action_value };


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, 'data : ' + action_id + ' ' + action_value);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'data : ' + action_id + ' ' + action_value);


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'action_id' is not in camel case.

this._writeDebug(Loglevel.DEBUG, 'data : ' + action_id + ' ' + action_value);


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'action_value' is not in camel case.

this._writeDebug(Loglevel.DEBUG, 'data : ' + action_id + ' ' + action_value);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 5 tabs.

//this._request_telliot_command(Instruction.EXT_DEVICE_PRE_ACTION_CMD, param, param.length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

/*************************************************************************


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_processRequestData (command, data) {


⚠️ [eslint] <space-before-function-paren> reported by reviewdog 🐶
Unexpected space before function parentheses.

_processRequestData (command, data) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

const keys = data ? Object.keys(data) : [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, 'command : ' + command);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'command : ' + command);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

switch(command) {


⚠️ [eslint] <keyword-spacing> reported by reviewdog 🐶
Expected space(s) after "switch".

switch(command) {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'req_voice_trigger_btn_pressed':


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'req_voice_trigger_btn_released':


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'req_voice_trigger_click' :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

this._request_telliot_command(Instruction.VOICE_TRIGGER_CLICK_CMD, keys, keys.length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'req_stt':


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'req_tts':


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

let str = unescape(data.toString());


⚠️ [eslint] <no-case-declarations> reported by reviewdog 🐶
Unexpected lexical declaration in case block.

let str = unescape(data.toString());


⚠️ [eslint] <prefer-const> reported by reviewdog 🐶
'str' is never reassigned. Use 'const' instead.

let str = unescape(data.toString());


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

var arr = this._toUTF8Array(str);


⚠️ [eslint] <no-var> reported by reviewdog 🐶
Unexpected var, use let or const instead.

var arr = this._toUTF8Array(str);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

this._writeDebug(Loglevel.DEBUG, 'data : ' + str);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'data : ' + str);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

this._writeArrayData(Loglevel.DEBUG, arr, true);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

this._request_telliot_command(Instruction.TEXT_TO_VOICE_CMD, arr, arr.length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'add_chatbot' :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'add_prompt' :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

let ai_prompt = unescape(data.toString());


⚠️ [eslint] <no-case-declarations> reported by reviewdog 🐶
Unexpected lexical declaration in case block.

let ai_prompt = unescape(data.toString());


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'ai_prompt' is not in camel case.

let ai_prompt = unescape(data.toString());


⚠️ [eslint] <prefer-const> reported by reviewdog 🐶
'ai_prompt' is never reassigned. Use 'const' instead.

let ai_prompt = unescape(data.toString());


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

var arr_data = this._toUTF8Array(ai_prompt);


⚠️ [eslint] <no-var> reported by reviewdog 🐶
Unexpected var, use let or const instead.

var arr_data = this._toUTF8Array(ai_prompt);


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'arr_data' is not in camel case.

var arr_data = this._toUTF8Array(ai_prompt);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

this._writeDebug(Loglevel.DEBUG, 'data : ' + ai_prompt);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'data : ' + ai_prompt);


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'ai_prompt' is not in camel case.

this._writeDebug(Loglevel.DEBUG, 'data : ' + ai_prompt);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

this._writeArrayData(Loglevel.DEBUG, arr_data, true);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

this._request_telliot_command(Instruction.ADD_PROMPT_CMD, arr_data, arr_data.length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'req_volume' :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'req_mute_unmute' :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'pre_action' :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

const predefined_action = [];


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'predefined_action' is not in camel case.

const predefined_action = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

keys.forEach(key => predefined_action.push(data[key]));


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._writeDebug(Loglevel.DEBUG, 'data : ' + predefined_action);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'data : ' + predefined_action);


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'predefined_action' is not in camel case.

this._writeDebug(Loglevel.DEBUG, 'data : ' + predefined_action);


⚠️ [eslint] <max-len> reported by reviewdog 🐶
This line has a length of 134. Maximum allowed is 120.

this._request_telliot_command(Instruction.EXT_DEVICE_PRE_ACTION_CMD, predefined_action, predefined_action.length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._request_telliot_command(Instruction.EXT_DEVICE_PRE_ACTION_CMD, predefined_action, predefined_action.length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'motor_ctrl' :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

const motor = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

keys.forEach(key => motor.push(data[key]));


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._writeDebug(Loglevel.DEBUG, 'data : ' + motor);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'data : ' + motor);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._request_telliot_command(Instruction.EXT_DEVICE_MOTOR_CTRL_CMD, motor, motor.length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'line_trace' :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

const line_trace_data = [];


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'line_trace_data' is not in camel case.

const line_trace_data = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

keys.forEach(key => line_trace_data.push(data[key]));


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._writeDebug(Loglevel.DEBUG, 'data : ' + line_trace_data);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'data : ' + line_trace_data);


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'line_trace_data' is not in camel case.

this._writeDebug(Loglevel.DEBUG, 'data : ' + line_trace_data);


⚠️ [eslint] <max-len> reported by reviewdog 🐶
This line has a length of 130. Maximum allowed is 120.

this._request_telliot_command(Instruction.EXT_DEVICE_LINE_TRACE_CMD, line_trace_data, line_trace_data.length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._request_telliot_command(Instruction.EXT_DEVICE_LINE_TRACE_CMD, line_trace_data, line_trace_data.length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'sensor_detect' :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

const sensor_data = [];


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'sensor_data' is not in camel case.

const sensor_data = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

keys.forEach(key => sensor_data.push(data[key]));


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._writeDebug(Loglevel.DEBUG, 'data : ' + sensor_data);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'data : ' + sensor_data);


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier 'sensor_data' is not in camel case.

this._writeDebug(Loglevel.DEBUG, 'data : ' + sensor_data);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 20 spaces but found 5 tabs.

this._request_telliot_command(Instruction.EXT_DEVICE_SENSOR_CMD, sensor_data, sensor_data.length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.

case 'rfid_detect' :


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

this._writeDebug(Loglevel.DEBUG, 'data : ' + keys);


⚠️ [eslint] <prefer-template> reported by reviewdog 🐶
Unexpected string concatenation.

this._writeDebug(Loglevel.DEBUG, 'data : ' + keys);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.

this._request_telliot_command(Instruction.VOICE_TRIGGER_CLICK_CMD, keys, keys.length);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 12 spaces but found 3 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 16 spaces but found 4 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

/*************************************************************************


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

_request_telliot_status()


⚠️ [eslint] <camelcase> reported by reviewdog 🐶
Identifier '_request_telliot_status' is not in camel case.

_request_telliot_status()


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <brace-style> reported by reviewdog 🐶
Opening curly brace does not appear on the same line as controlling statement.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._writeDebug(Loglevel.DEBUG, '_request_telliot_status');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._request_telliot_command(Instruction.GET_STATUS, null);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

//this.sp.write(this._sendBuffers);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

this._sendBuffers = [];


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <comma-dangle> reported by reviewdog 🐶
Missing trailing comma.

TelliotEvent
} = require('./Telliot_Base');


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

constructor () {


⚠️ [eslint] <no-useless-constructor> reported by reviewdog 🐶
Useless constructor.

constructor () {
super();
}


⚠️ [eslint] <space-before-function-paren> reported by reviewdog 🐶
Unexpected space before function parentheses.

constructor () {


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

super.init(handler, config);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

super.setSerialPort(sp);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

super.requestRemoteData(handler);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

super.handleRemoteData(handler);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

// ����̽����� �� �����͸� ó���ϴ� ����. ���⼭�� ó���� �����Ͱ� ���� ��ŵ�Ͽ���.


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

super.handleLocalData(data);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

super.disconnect(connector);


⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 8 spaces but found 2 tabs.

super.reset();


⚠️ [eslint] <eol-last> reported by reviewdog 🐶
Newline required at end of file but not found.

module.exports = new TelliotLite();

const BaseModule = require('./baseModule');

const Loglevel = {
ERROR: 0x00,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

Suggested change
ERROR: 0x00,
ERROR: 0x00,


const Loglevel = {
ERROR: 0x00,
WARNING: 0x01,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

Suggested change
WARNING: 0x01,
WARNING: 0x01,

const Loglevel = {
ERROR: 0x00,
WARNING: 0x01,
DEBUG: 0x02,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

Suggested change
DEBUG: 0x02,
DEBUG: 0x02,

ERROR: 0x00,
WARNING: 0x01,
DEBUG: 0x02,
INFO: 0x03,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

Suggested change
INFO: 0x03,
INFO: 0x03,

WARNING: 0x01,
DEBUG: 0x02,
INFO: 0x03,
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <semi> reported by reviewdog 🐶
Missing semicolon.

Suggested change
}
};

// External device command
EXT_DEVICE_PRE_ACTION_CMD: 0x0100,
EXT_DEVICE_MOTOR_CTRL_CMD: 0x0101,
EXT_DEVICE_LINE_TRACE_CMD: 0x0102,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

Suggested change
EXT_DEVICE_LINE_TRACE_CMD: 0x0102,
EXT_DEVICE_LINE_TRACE_CMD: 0x0102,

EXT_DEVICE_PRE_ACTION_CMD: 0x0100,
EXT_DEVICE_MOTOR_CTRL_CMD: 0x0101,
EXT_DEVICE_LINE_TRACE_CMD: 0x0102,
EXT_DEVICE_LED_CTRL_CMD: 0x0103,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

Suggested change
EXT_DEVICE_LED_CTRL_CMD: 0x0103,
EXT_DEVICE_LED_CTRL_CMD: 0x0103,

EXT_DEVICE_MOTOR_CTRL_CMD: 0x0101,
EXT_DEVICE_LINE_TRACE_CMD: 0x0102,
EXT_DEVICE_LED_CTRL_CMD: 0x0103,
EXT_DEVICE_SENSOR_CMD: 0x0104,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

Suggested change
EXT_DEVICE_SENSOR_CMD: 0x0104,
EXT_DEVICE_SENSOR_CMD: 0x0104,

EXT_DEVICE_LINE_TRACE_CMD: 0x0102,
EXT_DEVICE_LED_CTRL_CMD: 0x0103,
EXT_DEVICE_SENSOR_CMD: 0x0104,
EXT_DEVICE_TAG_DETECT: 0x0105,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

Suggested change
EXT_DEVICE_TAG_DETECT: 0x0105,
EXT_DEVICE_TAG_DETECT: 0x0105,

EXT_DEVICE_SENSOR_CMD: 0x0104,
EXT_DEVICE_TAG_DETECT: 0x0105,

// Setting Command

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [eslint] <indent> reported by reviewdog 🐶
Expected indentation of 4 spaces but found 1 tab.

Suggested change
// Setting Command
// Setting Command

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants