Back to Step by Step Course by Robojax

Lesson 06: Introduction to Arduino Data Types

Lesson 06: Introduction to Arduino Data Types

Please select other codes for this lecture from the links below.

This code is part of Lecture 06 Data Types: Boolean

Char documentation: https://www.arduino.cc/reference/en/language/variables/data-types/bool/


 /*
* This code is part of Step by Step Ardunio Course 
   Code: Lecture 06-6
 * Arduino Variable and Data Types: Boolean
 
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

 bool x = true;
 bool b = false;

 Serial.print("x: ");
 Serial.println(x);
 Serial.println(); 

 Serial.print("b: ");
 Serial.println(b);
 Serial.println(); 
}

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

}


   

The least I expect from you is to give the video a thumbs up and subscribe to my channel. I appreciate it. I have spent hundreds of hours making these lectures and writing code. You don't lose anything by subscribing to my channel. Your subscription is a stamp of approval for my videos, helping more people find them and, in turn, helping me. Thank you!

If you found this tutorial helpful, please support me so I can continue creating content like this. support me via PayPal

**** AFFILIATE PROGRAM **** We are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.

Right Side
footer