From d6103313ae1c370a0f5f6372aa0c90655444b9f4 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Tue, 19 Sep 2023 01:22:13 +0300 Subject: [PATCH] added variable sizes 4 nano --- snipplets/code/Arduino/variables_sizes.ino | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/snipplets/code/Arduino/variables_sizes.ino b/snipplets/code/Arduino/variables_sizes.ino index 355eb6e..ccf82e4 100644 --- a/snipplets/code/Arduino/variables_sizes.ino +++ b/snipplets/code/Arduino/variables_sizes.ino @@ -52,3 +52,16 @@ void setup() { void loop() { // } + +/** + * Arduino Nano + * + * int bytes size: 2 + * unsigned int bytes size: 2 + * signed int bytes size: 2 + * unsigned long bytes size: 4 + * float bytes size: 4 + * double bytes size: 4 + * char bytes size: 1 + * char * bytes size: 2 + */