Byte

From Microduino Wiki
Revision as of 06:12, 18 August 2016 by Fengfeng (talk) (Created page with "Byte<br> *'''Description'''<br> One byte store 8 bits of unsigned numbers, from 0 to 255. <br> *'''Example'''<br> <pre style="color:green"> byte b = B10010; // "B" is b...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Byte

  • Description

One byte store 8 bits of unsigned numbers, from 0 to 255.

  • Example
    byte b = B10010;  // "B"  is binary(B10010 is equal to decimal 18)

[Return to Arduino Syntax Manual]