搜索代码

Lesson 6-4: Arduino Variables and Data Types: Unsigned Integer

Lesson 6-4: Arduino Variables and Data Types: Unsigned Integer

This code is part of Lecture 6, Data Types: Unsigned Integer. Char documentation: https://www.arduino.cc/reference/en/language/variables/data-types/unsignedint/
534-Lesson 6: Introduction to Arduino Data Types
语言: C++
++
/*
* This code is part of Step by Step Arduino Course 
   Code: Lecture 06-4
* Arduino Variable and Data Types: Unsigned Integer

with over 100 lectures free on YouTube. Watch it here: http://robojax.com/L/?id=338
Get the code for the course: http://robojax.com/L/?id=339 
* Written by Ahmad Shamshiri for Robojax, robojax.com http://youtube.com/robojaxTV
* Feb 10, 2019  
Please watch video instruction here: https://youtu.be/n0z6fjww8eA
This code is available at: http://robojax.com/course1/?vid=lecture06

*/
void setup() {
	
 Serial.begin(9600);
 Serial.println("Robojax Step By Step Arduino Course");
 	//Robojax Step By Step Arduino Course http://robojax.com/L/?id=338

 unsigned int x = 456;


 Serial.print("x: ");
 Serial.println(x);
 Serial.print("size of x (bytes): ");
 Serial.println(  sizeof(x)  ); 


}

void loop() {
  // put your main code here, to run repeatedly:

}

资源与参考

尚无可用资源。

文件📁

没有可用的文件。