Merge pull request #70 from FlorianLudwig/patch-1
enable code highlighting for JS in readme
This commit is contained in:
		
						commit
						405070b5a7
					
				
							
								
								
									
										32
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										32
									
								
								README.md
									
									
									
									
									
								
							@ -116,24 +116,28 @@ If you're using [TheThingsNetwork](https://www.thethingsnetwork.org/) you may wa
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
Decoder:
 | 
					Decoder:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    function Decoder(bytes, port) {
 | 
					```javascript
 | 
				
			||||||
      var decoded = {};
 | 
					function Decoder(bytes, port) {
 | 
				
			||||||
      if (port === 1) {
 | 
					    var decoded = {};
 | 
				
			||||||
        decoded.wifi = (bytes[0] << 8) | bytes[1];
 | 
					    if (port === 1) {
 | 
				
			||||||
        decoded.ble = (bytes[2] << 8) | bytes[3];
 | 
					      decoded.wifi = (bytes[0] << 8) | bytes[1];
 | 
				
			||||||
      }
 | 
					      decoded.ble = (bytes[2] << 8) | bytes[3];
 | 
				
			||||||
      return decoded;
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					    return decoded;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Converter:
 | 
					Converter:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    function Converter(decoded, port) {
 | 
					```javascript
 | 
				
			||||||
      var converted = decoded;
 | 
					function Converter(decoded, port) {
 | 
				
			||||||
      if (port === 1) {
 | 
					  var converted = decoded;
 | 
				
			||||||
        converted.pax = converted.ble + converted.wifi;
 | 
					  if (port === 1) {
 | 
				
			||||||
      }
 | 
					    converted.pax = converted.ble + converted.wifi;
 | 
				
			||||||
      return converted;
 | 
					  }
 | 
				
			||||||
    }
 | 
					  return converted;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Remote command set
 | 
					# Remote command set
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user