added variable sizes 4 nano

This commit is contained in:
Alexander Popov 2023-09-19 01:22:13 +03:00
parent 6fa59dd89f
commit d6103313ae
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
1 changed files with 13 additions and 0 deletions

View File

@ -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
*/