import { validateNumber } from '../core/validate';
import {
composer,
fiterWithBinaryStr
} from '../core/utils';
import Electronic from './electronic';
import protocolAssembler from '../protocol/cmd';
import Control from '../core/control';
import { SUPPORTLIST } from '../settings';
/**
* Potentionmeter sensor module
* @extends Electronic
*/
class Potentionmeter extends Electronic {
constructor(port) {
super();
this.args = {
port: validateNumber(port)
};
}
/**
* getter of protocol
*/
get protocol() {
return composer(protocolAssembler.readPotentionmeter, [this.args.port]);
}
/**
* Get data of Potentionmeter sensor
* @return {Promise}
*/
async getData() {
return await Control.read(this.protocol);
}
static get SUPPORT(){
return fiterWithBinaryStr(SUPPORTLIST, '1111');
}
}
export default Potentionmeter;