Introduction
The function to calculate a square root of a number is sqrt().
Requirements
Ethernet or 20 I/Os PLC:
Ethernet PLC >>>Â
20 I/Os PLC >>>Â
Industrial Shields boards:
Industrial Shields Boards >>>
Function
sqrt(x);
Parameter
x: could be any data typeÂ
Example
Next, it is showed a simple example of how to print a square root of an analog value every second.
long number = 0;
void setup() {
Serial.begin(9600L);
}
void loop() {
number = sqrt(analogRead(I0_7));
Serial.println(number);
delay(1000);
}
Function to calculate a square root of a number using Arduino IDE