- Lesson 06-1: Arduino Variable and Data Types: Integer
- Lesson 06-2: Arduino Variable and Data Types: Character
- Lesson 06-3: Arduino Variable and Data Types: Float
- Lesson 06-4: Arduino Variable and Data Types: Unsigned Integer
- Lesson 06-5: Arduino Variable and Data Types: String
- Lesson 06-6: Arduino Variable and Data Types: Boolean
- Lesson 06-7: Arduino Variable and Data Types: Long
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: long
Char documentation: https://www.arduino.cc/reference/en/language/variables/data-types/long/
/*
* This code is part of Step by Step Ardunio Course
Code: Lecture 06-7
* Arduino Variable and Data Types: Long
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() {
long num = 186000L;
long weight = num * 1000;
Serial.begin(9600);
Serial.println("Robojax Step By Step Arduino Course");
//Robojax Step By Step Arduino Course http://robojax.com/L/?id=338
Serial.print("Number:");
Serial.println(num);
Serial.print("Weight:");
Serial.println(weight);
}
void loop() {
//Robojax Step By Step Arduino Course http://robojax.com/L/?id=338
}