Entradas

7 SEGMENT DISPLAY AND BUTTON ON

Imagen

INFRARED OPTICAL SENSOR

Imagen

EVALUATION 1

Imagen
QUIZ1 QUIZ2 QUIZ3

ULTRASONIC SENSOR GENERATING LIGTH ALARM WITH RGB LED

Imagen
MOUNTING

LED 25

Imagen
from machine import Pin, Timer led = pin(25, Pin.OUT) LED_state = True time = Timer() def tick(timer): global led, LED_state LED_state =not LED_state led_value(LED_state) time init ( freq = 1, mode=Timer.PERIODOC, callback=tick) EXERCISE 2 from machine import Pin import utime led = Pin(25, Pin.OUT) led.low() while True: led.toggle() print("Toggle") utime.sleep(1)

ULTRASOUND SENSOR MONITORING

Imagen
QUESTIONS: -En el cuaderno digital titule: Ultrasonic sensor monitoring -Tema 1: Sensor de ultrasonido. Consulte en el buscador: -Imagen del sensor HC-SRO4 (Copie y pegue) -¿Cómo es el funcionamiento del sensor HC-SR04?(Es decir, ¿cómo opera?) Seleccione una imagen. -¿Cuál es el rango de distancia medida en cm, a la que se debe encontrar un objeto para que lo pueda detectar? -¿Qué nombres reciben cada uno de los terminales del sensor HC-SR04? Seleccione una imagen. -Consulte cuál es la velocidad aproximada del sonido en el aire a temperatura ambiente. Velocidad del sonido = _______m/s. -¿Qué hace la función:utime.sleep_us( )? -¿Qué hace la función: utime.ticks_ms( )? -En WOKWI diagrame el montaje suministrado para monitorear al sensor de ultrasonido. ALGORITHM FOR MONITORING ULTRASONIC SENSOR ''' INVISIBLE TECHNOLOGIES Created by: Date created: Date modified: Description: ULTRASOUND SENSOR MONITORING ''' from machine import Pin import u...