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

来自Microduino Wikipedia
跳转至: 导航搜索
(创建页面,内容为“{| style="width: 800px;" |- | <p style="color: #666666;font-size:220%">'''GestureSensor.begin()'''</p> <br> <p style="color: #E87E05;font-size:135%">描述</p> 运…”)
 
 
(未显示同一用户的1个中间版本)
第2行: 第2行:
 
|-
 
|-
 
|
 
|
<p style="color: #666666;font-size:220%">'''GestureSensor.begin()'''</p>
+
<p style="color: #666666;font-size:220%">'''GestureSensor.enableGestureSensor()'''</p>
 
<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>
bool类型,true或false。检测传感器是否运行
+
bool类型,true或false。检测传感器是否使能成功
 
<p style="color: #E87E05;font-size:135%">返回值</p>
 
<p style="color: #E87E05;font-size:135%">返回值</p>
 
 

2018年5月16日 (三) 09:35的最新版本

GestureSensor.enableGestureSensor()


描述

使能手势传感器。

参数

bool类型,true或false。检测传感器是否使能成功

返回值

示例

#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 gesture sensor engine
  if ( gestureSensor.enableGestureSensor(true) ) {
    Serial.println(F("Gesture sensor is now running"));
  } else {
    Serial.println(F("Something went wrong during gesture sensor init!"));
  }
}

void loop() {
}

其他