Programacion Estructurada, tareas y trabajos de la Unidad 6. Alumno: Luis Guillermo Robles Preciado. No: 22150048 Horario: 8:00-9:00
Tareas y trabajos de la Unidad 6 Programación Estructurada. Trabajo en Arduino 01: void setup() { pinMode(LED_BUILTIN, OUTPUT); } void loop() { digitalWrite(LED_BUILTIN, HIGH); delay(2000); digitalWrite(LED_BUILTIN, LOW); delay(1000); } Trabajo en Arduino 02: void setup() { // put your setup code here, to run once: Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: Serial.println("Hola"); } Trabajo en Arduino 03: void setup() { // put your setup code here, to run once: Serial.begin(9600); int a=42; char c='m'; float raiz=sqrt(2.0); Serial.println(a); Serial.println(c); Serial.println(raiz); } void loop() { // put your main code here, to run repeatedly: } ...