BMSSet.js 366 B

1234567891011121314
  1. const common = require('../../common.js');
  2. const bmsDevices = {
  3. FMBMS: require('./FMBMS.js')
  4. };
  5. function isBleBmsSet(device) {
  6. return bmsDevices[device.device_type] ? true : false;
  7. }
  8. function bmsSet(device) {
  9. return bmsDevices[device.device_type].bmsParameterTypeSetValue(device);
  10. }
  11. module.exports = {
  12. isBleBmsSet: isBleBmsSet,
  13. bmsSet: bmsSet
  14. };