“GestureSensor.enableLightSensor()”的版本间的差异

来自Microduino Wikipedia
跳转至: 导航搜索
(创建页面,内容为“{| style="width: 800px;" |- | <p style="color: #666666;font-size:220%">'''GestureSensor.enableLightSensor()'''</p> <br> <p style="color: #E87E05;font-size:135%">描…”)
 
第5行: 第5行:
 
<br>
 
<br>
 
<p style="color: #E87E05;font-size:135%">描述</p>
 
<p style="color: #E87E05;font-size:135%">描述</p>
运行启动传感器灯
+
使能传感器中的光电传感器
 
<p style="color: #E87E05;font-size:135%">参数</p>
 
<p style="color: #E87E05;font-size:135%">参数</p>
 
 

2018年5月16日 (三) 09:36的版本

GestureSensor.enableLightSensor()


描述

使能传感器中的光电传感器

参数

返回值

示例

#include <Microduino_Gesture.h>
// Global Variables
Gesture gestureSensor;


void setup() {

  // Initialize Serial port
  Serial.begin(9600);

  // Initialize Gesture (configure I2C and initial values)
  if ( gestureSensor.begin() ) {
    Serial.println(F("Gesture initialization complete"));
  } else {
    Serial.println(F("Something went wrong during Gesture init!"));
  }

  // Start running the Gesture light sensor (no interrupts)
  if ( gestureSensor.enableLightSensor(false) ) {
    Serial.println(F("Light sensor is now running"));
  } else {
    Serial.println(F("Something went wrong during light sensor init!"));
  }
  // Wait for initialization and calibration to finish
  delay(500);
}

void loop() {
}

其他