mirror of
https://github.com/eclipse/upm.git
synced 2025-07-01 17:31:13 +03:00
light: Added light sensor C source
Added the C source for the light sensor with necessary changes to cmake, examples, docs. * Renamed all files with grovelight to light * Replaced all instances of grovelight with light * Added C source for light sensor * Updated all cmake files * Added C example for light sensor * Split out light sensor from grove library Signed-off-by: Noel Eck <noel.eck@intel.com>
This commit is contained in:
@ -38,7 +38,7 @@ add_example(Emg emg)
|
||||
add_example(Gsr gsr)
|
||||
add_example(GroveLed_multiSample grove)
|
||||
add_example(GroveLEDSample grove)
|
||||
add_example(GroveLightSample grove)
|
||||
add_example(LightSample grove)
|
||||
add_example(GroveLineFinderSample grovelinefinder)
|
||||
add_example(GroveMDSample grovemd)
|
||||
add_example(GroveMoistureSample grovemoisture)
|
||||
|
@ -22,10 +22,10 @@
|
||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
public class GroveLightSample {
|
||||
public class LightSample {
|
||||
public static void main(String args[]) throws InterruptedException {
|
||||
// ! [Interesting]
|
||||
upm_grove.GroveLight gl = new upm_grove.GroveLight(2);
|
||||
upm_grove.Light gl = new upm_grove.Light(2);
|
||||
|
||||
while (true) {
|
||||
float raw_value = gl.raw_value();
|
Reference in New Issue
Block a user