Arduino – Servo Motor
A Servo Motor is a small device that has an output shaft. This shaft can be positioned to specific angular positions by sending the servo a coded signal. As long…
A Servo Motor is a small device that has an output shaft. This shaft can be positioned to specific angular positions by sending the servo a coded signal. As long…
In Git, the term remote is concerned with the remote repository. It is a shared repository that all team members use to exchange their changes. A remote repository is stored…
The term "git origin master" is used in the context of a remote repository. It is used to deal with the remote repository. The term originally comes from where the…
In this guide, we will discuss Git Head. The HEAD points out the last commit in the current checkout branch. It is like a pointer to any reference. The HEAD can be…
This topic is about Solidity - For Loop. The for loop is the most compact form of looping. It includes the following three important parts − The loop initialization where we initialize our counter…
Solidity provides an option to use assembly language to write inline assembly within Solidity source code. We can also write a standalone assembly code which then be converted to bytecode.…
this topic is about Solidity - Libraries. Libraries are similar to Contracts but are mainly intended for reuse. A Library contains functions which other contracts can call. Solidity have certain…
This topic is about Solidity - Interfaces. Interfaces are similar to abstract contracts and are created using interface keyword. Following are the key characteristics of an interface. Interface can not have any…
This topic is about Solidity - Abstract Contracts. Abstract Contract is one which contains at least one function without any implementation. Such a contract is used as a base contract.…
This topic is about Solidity - Constructors. Constructor is a special function declared using constructor keyword. It is an optional funtion and is used to initialize state variables of a contract. Following…