constrain()

[Math]

説明

Constrains a number to be within a range.

構文

constrain(x, a, b)

媒介変数

x: the number to constrain, all data types
a: the lower end of the range, all data types
b: the upper end of the range, all data types

戻り値

x: if x is between a と b
a: if x is less than a
b: if x is greater than b

sensVal = constrain(sensVal, 10, 150);
// limits range of sensor values to between 10 and 150 

参照

  • [Language] min()
  • [Language] max()

Language Reference Home

86Duinoリファレンスのテキストは、Arduinoリファレンスを改変したもので、Creative Commons Attribution-ShareAlike 3.0ライセンスに基づいてライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。

上部へスクロール