Ebotics BXLAB01 Guia De Inicio Rapido página 5

Ocultar thumbs Ver también para BXLAB01:
compatible. A continuación encontrarás el código de programación necesario.
Código Aduino
1.
Descarga el software Arduino
2.
Abre el programa Arduino y, una vez en él, copia el siguiente código:
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#include <Servo.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
LCD
Servo motor;
int
pot = 0, pinpot = A1;
float
degree;
int
pinlight = A0, luz;
void
setup() {
// lIMPIAR PANTALLA LCD
lcd.begin();
lcd.clear();
//CONFIGURACIÓN DEL SERVO MOTOR
motor.attach (9);
}
void
loop() {
// REPRODUCIR EL GIRO DEL POTENCIÓMETRO EN LOS GRADOS DEL SERVO
MOTOR.
pot = analogRead (pinpot);
degree = map (pot, 0,1023, 0, 180);
POTENCIÓMETRO CON LOS GRADOS DEL SERVO MOTOR.
if
( degree <= 10)
{
motor.write (10);
}
else
{
motor.write (degree);
}
//LEER LA INTENSIDAD DE LUZ DEL SENSOR DE LUZ
luz = analogRead( pinlight);
DEL SENSOR DE LUZ
// ESCRIBIR EN LA PANTALLA LCD
lcd.setCursor(0, 0);
5
y realiza en proceso de instalación.
// LIBRERIA DEL SERVOMOTOR
// VARIABLE DEL SERVO MOTOR
//VARIABLES
// VARIABLE DE GRADOS DEL SERVO MOTOR
// PIN Y VARIABLE LDR
// INICIALIZACIÓN PANTALLA LCD
// lIMPIAR LA PANTALLA LCD
// ESCRIBIR EN LA LÍNEA 1 COLUMNA 0
// LIBRERIA PARA LA PANTALLA LCD
// CONFIGURACIÓN DE LA PANTALLA
PINS DEL POTENCIÓMETRO
// LECTURA DEL VALOR DEL POTENCIÓMETRO
//ESCALAR LOS VALORES DEL
// LECTURA DE LA INTENSIDAD DE LUZ
www.ebotics.com
loading

Productos relacionados para Ebotics BXLAB01