Diferencia entre revisiones de «PI»
De ArduWiki
(→Referencias externas) |
(→Ejemplo 1) |
||
Línea 14: | Línea 14: | ||
== Ejemplo 1 == | == Ejemplo 1 == | ||
+ | <syntaxhighlight lang="c++"> | ||
+ | void setup(){ | ||
+ | Serial.begin(115200); | ||
+ | } | ||
+ | void loop(){ | ||
+ | //Nada | ||
+ | } | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | == Ejemplo 2 == | ||
<syntaxhighlight lang="c++"> | <syntaxhighlight lang="c++"> | ||
void setup(){ | void setup(){ |
Revisión del 22:20 24 jun 2019
Contenido
Descripción
Es la constante Pi (π), también conocida como la circunferencia de un círculo "base".
Su valor se aproxima a 3.14159265358979323846; sin embargo, para efectos de un programa de Arduino, este valor acaba siendo truncado según la limitación de un double o float.
Sintaxis
PI HALF_PI TWO_PI
Advertencias
- Nota que PI, HALF_PI y TWO_PI se debe escribir en mayusculas.
Ejemplo 1
void setup(){
Serial.begin(115200);
}
void loop(){
//Nada
}
Ejemplo 2
void setup(){
Serial.begin(115200);
}
void loop(){
for (float n=0; n<TWO_PI; n+=0.01){
Serial.println(sin(n));
}
}
Vea también