Merge pull request #277 from DavideNesi/patch-2
Update plain_decoder.js
This commit is contained in:
		
						commit
						a974ffb0d4
					
				@ -10,7 +10,7 @@ function Decoder(bytes, port) {
 | 
			
		||||
    if (bytes.length >= 2) {
 | 
			
		||||
    decoded.wifi = (bytes[i++] << 8) | bytes[i++];}
 | 
			
		||||
    
 | 
			
		||||
    if (bytes.length >= 4) {
 | 
			
		||||
    if (bytes.length === 4 || bytes.length > 15) {
 | 
			
		||||
    decoded.ble = (bytes[i++] << 8) | bytes[i++];}
 | 
			
		||||
 | 
			
		||||
    if (bytes.length > 4) {
 | 
			
		||||
@ -61,6 +61,12 @@ function Decoder(bytes, port) {
 | 
			
		||||
    decoded.air = ((bytes[i++] << 8) | bytes[i++]);
 | 
			
		||||
  }
 | 
			
		||||
  
 | 
			
		||||
  if (port === 8) {
 | 
			
		||||
    var i = 0;
 | 
			
		||||
    if (bytes.length >= 2) {
 | 
			
		||||
    decoded.battery = (bytes[i++] << 8) | bytes[i++];}
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  return decoded;
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user