86Duino Language レファレンス

86Duino programs can be divided into three main parts: structure, values (variables and constants), and functions, which are compatible with Arduino programs.


Basic Concepts:

  • スケッチ: スケッチの様々な構成要素とその仕組み
  • Variables: How to define and use variables.
  • Functions: How to define and use functions.

Language Reference:

Structure

The elements of 86Duino(C++) code.

スケッチ

Control Structures

Further Syntax

Arithmetic Operators

  • = (assignment operator)
  • + (addition)
  • (subtraction)
  • * (multiplication)
  • / (division)
  • % (modulo)

Comparison Operators

  • == (equal to)
  • != (not equal to)
  • < (less than)
  • > (greater than)
  • <= (less than or equal to)
  • >= (greater than or equal to)

Boolean Operators

Pointer Access Operators

Bitwise Operators

  • & (bitwise and)
  • | (bitwise or)
  • ^ (bitwise xor)
  • ~ (bitwise not)
  • << (bitshift left)
  • >> (bitshift right)

Compound Operators

  • ++ (increment)
  • – – (decrement)
  • += (compound addition)
  • -= (compound subtraction)
  • *= (compound multiplication)
  • /= (compound division)
  • &= (compound bitwise and)
  • |= (compound bitwise or)

Variables

86duino data types and constants.


Functions

For controlling the 86Duino board and performing computations.


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

コメントする

上部へスクロール