mirror of
				https://github.com/eclipse/upm.git
				synced 2025-11-04 00:54:21 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			688 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			688 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Drive the Grive RGB LCD (a JHD1313m1)
 | 
						|
//
 | 
						|
// The way to drive the LCD directly from
 | 
						|
// Javascript code using the i2c interface directly
 | 
						|
// This approach is useful for learning about using
 | 
						|
// the i2c bus. The i2c file is an implementation
 | 
						|
// in Javascript for some of the common LCD functions
 | 
						|
 | 
						|
// configure jshint
 | 
						|
 | 
						|
var upmMICSV89 = require("jsupm_micsv89"); 
 | 
						|
 | 
						|
var mics = new upmMICSV89.MICSV89(6); 
 | 
						|
 | 
						|
while(1)
 | 
						|
{
 | 
						|
    mics.update(); 
 | 
						|
    while(!mics.valid());
 | 
						|
    console.log("co2: " + mics.co2equ()); 
 | 
						|
    console.log("short: " + mics.vocshort()); 
 | 
						|
    console.log("tvoc: " + mics.tvoc());   
 | 
						|
    console.log("resistor: " + mics.resistor()); 
 | 
						|
    console.log("***********************");
 | 
						|
}
 |