Char

出自YFRobotwiki
在2016年12月26日 (一) 21:00由Allblue對話 | 貢獻所做的修訂版本

(差異) ←上個修訂 | 最新修訂 (差異) | 下一修訂→ (差異)
跳轉到: 導覽搜尋

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論壇