signbit()
[Math]
double signbit(double x);Description
Returns the sign bit of the value x.
Parameters
x: The value to check the sign bit.
Returns
The sign bit of the value x.
Example Code
The code reads the value of a potentiometer connected to pin
IN and place the sign bit of x on pin OUT.
void setup() {
pinLabel(0, "IN"); // set the label of pin 0 to "IN"
pinLabel(1, "OUT"); // set the label of pin 1 to "OUT"
pinMode(1, OUTPUT); // set pin 1 as output
pinLabel(2, "VCC"); // set the label of pin 2 to "VCC"
powerPin(2); // set pin 2 as power pin
pinLabel(3, "GND"); // set the label of pin 3 to "GND"
groundPin(3); // set pin 3 as ground pin
}
void loop() {
// read the value of the potentiometer
int val = analogRead(0);
// map the value of the potentiometer from 0 to 1023
// to the range of -5 to 5
double x = map(val, 0, 1023, -5, 5);
// calculate the sign bit of x
double y = signbit(x);
// write the value of y to pin 1
digitalWrite(1, (int) y);
}