86Duino programs can be divided into three main parts: structure, values (variables and constants), and functions, which are compatible with Arduino programs.
Basic Concepts:
- Sketch: The various components of a sketch and how they work.
- Variables: How to define and use variables.
- Functions: How to define and use functions.
Language Reference:
Structure
The elements of 86Duino(C++) code.
Sketch
Control Structures
Further Syntax
Arithmetic Operators
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
Compound Operators
Variables
86duino data types and constants.
Constants
Conversion
Data Types
Functions
For controlling the 86Duino board and performing computations.
Digital I/O
Analog I/O
- analogReference()
- analogRead()
- analogWrite() – PWM
- analogReadResolution()
- analogWriteResolution()
- cpuTemperature()
Advanced I/O
Time
Math
Trigonometry
Characters
The text of the 86Duino reference is a modification of the Arduino reference and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.