Skip to content

Files

Latest commit

Feb 19, 2019
f7666e5 · Feb 19, 2019

History

History
55 lines (32 loc) · 886 Bytes

double.adoc

File metadata and controls

55 lines (32 loc) · 886 Bytes
title categories subCategories
double
Variables
Data Types

double

Description

Double precision floating point number. On the Uno and other ATMEGA based boards, this occupies 4 bytes. That is, the double implementation is exactly the same as the float, with no gain in precision.

On the Arduino Due, doubles have 8-byte (64 bit) precision.

Notes and Warnings

Users who borrow code from other sources that includes double variables may wish to examine the code to see if the implied precision is different from that actually achieved on ATMEGA based Arduinos.

See also