AM 04: Luxes reading

This is the basic code to read the Luxes sensor.

Required Materials

1 x Plug & Sense! Ambient Control 1 x Luminosity (Luxes Accuracity)

Notes

- This example can be executed in Waspmote v12 and Waspmote v15

Code

/*  
 *  ------------  [AM_04] - Luxes sensor reading  -------------- 
 *  
 *  Explanation: This is the basic code to read the Luxes sensor 
 *  
 *  Copyright (C) 2016 Libelium Comunicaciones Distribuidas S.L. 
 *  http://www.libelium.com 
 *  
 *  This program is free software: you can redistribute it and/or modify  
 *  it under the terms of the GNU General Public License as published by  
 *  the Free Software Foundation, either version 3 of the License, or  
 *  (at your option) any later version.  
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 * 
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see .
 *
 *  Version:         3.0
 *  Design:          David Gascón
 *  Implementation:  Luis Miguel Marti
 */

#include 

float digitalLuxes; 


void setup() 
{
  USB.ON();    
  USB.println(F("LUX value example"));
}

void loop()
{
  // Read the Luxes sensor: INDOOR or OUTDOOR
  digitalLuxes = SensorAmbient.getLuxes(OUTDOOR);
  
  USB.print(F("luxes:"));
  USB.println(digitalLuxes);


  //wait 2 seconds
  delay(2000);
}

Output

 H#
 LUX value example
 luxes:680.0000000000
 luxes:680.0000000000
 ...

Last updated