Char

来自YFRobotwiki
2016年12月26日 (一) 21:00Allblue讨论 | 贡献的版本

(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索

char()

描述

Converts a value to the char data type. --


语法


return;

return value; // both forms are valid


参数

value: any variable or constant type


示例

A function to compare a sensor input to a threshold


 int checkSensor(){       
    if (analogRead(0) > 400) {
        return 1;
    else{
        return 0;
    }
}

The return keyword is handy to test a section of code without having to "comment out" large sections of possibly buggy code.


void loop(){

// brilliant code idea to test here

return;

// the rest of a dysfunctional sketch here
// this code will never be executed
}



返回Arduino语法参考列表

更多建议和问题欢迎反馈至 YFRobot论坛