Found 989 Articles for Software & Coding

Difference between #define and const in Arduino

Yash Sanghvi
Updated on 24-Jul-2021 14:34:44

4K+ Views

If you've done sufficient Arduino programming, you'd have seen that there are two ways of defining constants.#defineOne way is to use #define, like#define const_name 3constThe other way is to use the const keyword, likeconst int var_name = 3; Difference between #define and const#define is like a placeholder. The Arduino compiler replaces all mentions of this constant with its value at the compile time. This means that the values defined using #define don't take up any program space.Variables defined using const, on the other hand, are just normal variables, whose values can't be changed. They take up program memory space, and ... Read More

How to Use Volatile Variables in Arduino?

Yash Sanghvi
Updated on 24-Jul-2021 14:25:16

2K+ Views

Just like in C and C++, you need to qualify a variable with the volatile keyword if it can be modified within an interrupt routine.When you qualify a variable as volatile, this is what happens behind the scenes −The compiler gets instructed that the variable should be loaded into the RAM and not the storage register (where program variables are generally stored/manipulated)This ensures that any changes to the variable outside of the loop() (for example in the interrupt service routine), get immediately reflected in the loop()If you have a variable larger than a byte in size (int or long), then ... Read More

How to Use Static Variables in Arduino?

Yash Sanghvi
Updated on 24-Jul-2021 14:20:35

3K+ Views

A static variable is a special kind of variable; it is allocated memory 'statically'. Its lifetime is the entire run of the program. It is specific to a function, i.e., only the function that defined it can access it. However, it doesn't get destroyed after the function call ends. It preserves its value between successive function calls. It is created and initialized the first time a function is called. In the next function call, it is not created again. It just exists.ExampleTake a look at the following example.void setup() {    Serial.begin(9600);    Serial.println(); } void loop() {    staticFunctionDemo(); ... Read More

How to Use 'U' and 'L' formatters in Arduino?

Yash Sanghvi
Updated on 24-Jul-2021 14:16:22

516 Views

When going through Arduino codes, you may come across some numbers which are followed by either a U or an L or both (or in small caps, u and l). These are formatters, which force integer constants to be of a specific format. U forces an integer constant to be of the unsigned data format, while L forces the integer constant to be of the long data format.These formatters can be used when defining variables, as well as using some integer values directly in a formula.Exampleint a = 33u; # define b 33ul int c = a*1000L;All of the above ... Read More

String comparisons in Arduino

Yash Sanghvi
Updated on 24-Jul-2021 14:11:06

372 Views

The same operators that are used for comparing integers like , >=, 'A'.ExampleTake a look at the following example.void setup() {    Serial.begin(9600);    Serial.println();    String s1 = "Hello";    String s2 = "hello";    String s3 = "100";    String s4 = "90";    if (s1 > s2) {       Serial.println("s1 is greater than s2");    } else if(s2 > s1) {       Serial.println("s2 is greater than s1");    }    if (s3 > s4) {       Serial.println("s3 is greater than s4");    } else if(s4 > s3) {     ... Read More

String to byteArray in Arduino

Yash Sanghvi
Updated on 24-Jul-2021 14:07:44

7K+ Views

The getBytes() function helps copy the content of a String to a byte array. The syntax is −string1.getBytes(buf, len)where, string1 is the string whose content you want to copy to a byte array, buf is the byte array, andlen is the length of content to be copied.ExampleThe following example illustrates how to use this function −byte buf[10]; void setup() {    Serial.begin(9600);    Serial.println();    String s1 = "Hello World";    s1.getBytes(buf, 5);    for (int i = 0; i < 10; i++) {       Serial.println(buf[i]);    } } void loop() { }OutputThe Serial Monitor output is shown ... Read More

How to Use isControl() in Arduino?

Yash Sanghvi
Updated on 24-Jul-2021 14:02:04

494 Views

The isControl() function is used to determine if a character is a control character. A control character or a non-printing character (NPC) is a code point (a number) in a character set that does not represent a written symbol. All entries in the ASCII table below code 32 are of this kind. This includes characters like '', '\t', and so on.SyntaxThe syntax of the isControl function is as follows −isControl(myChar)Where myChar is the character being evaluated. If it is a control character, this function returns True, otherwise False.ExampleThe following example illustrates how to use this function −void setup() {   ... Read More

How to interface Arduino with a GSM Module and ping to a website?

Yash Sanghvi
Updated on 24-Jul-2021 13:57:06

1K+ Views

In this article, we will see how to interface Arduino with a GSM Module, and ping to a website.You will need the following −An Arduino boardA GSM Module (SIM800C, SIM900A, are popular examples, but you can have any other module as well)A GSM (2G) SIM Card, or a 4G SIM Card with 2G fallback option (Jio SIM Cards won't work for this project)A GSM AntennaYou could also get a GSM Module development board, like the one below (the SIM Card Holder is on the other side of the board) −A GSM Module interacts with a microcontroller via UART (see the ... Read More

How to interface Arduino with a GSM module and delete all the read SMSes?

Yash Sanghvi
Updated on 24-Jul-2021 13:48:08

679 Views

In this article, we will see how to interface Arduino with a GSM Module, and delete all the read SMSes. You will need the following −An Arduino boardA GSM Module (SIM800C, SIM900A, are popular examples, but you can have any other module as well)A GSM (2G) SIM Card, or a 4G SIM Card with 2G fallback option (Jio SIM Cards won't work for this project)A GSM AntennaYou could also get a GSM Module development board, like the one below (the SIM Card Holder is on the other side of the board) −A GSM Module interacts with a microcontroller via UART ... Read More

How to interface Arduino with a GSM Module and read SMS?

Yash Sanghvi
Updated on 24-Jul-2021 13:39:35

3K+ Views

In this article, we will see how to interface Arduino with a GSM Module, and read an SMS sent to the SIM card attached to the module.You will need the following −An Arduino boardA GSM Module (SIM800C, SIM900A, are popular examples, but you can have any other module as well)A GSM (2G) SIM Card, or a 4G SIM Card with 2G fallback option (Jio SIM Cards won't work for this project)A GSM AntennaYou could also get a GSM Module development board, like the one below (the SIM Card Holder is on the other side of the board) −A GSM Module ... Read More

Advertisements