"""
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Raspberry Pi Pico (MicroPython) |
┃ |
┃ |
┃ Copyright (c) 2024 Ali Rashidi |
┃ GitHub: github.com/thealiiiiiiii |
┃ License: only by ME |
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
"""
#add LCD
from time import sleep
import Smart_greenhouse
import Smart_Motion_Detection
import LightSense
while True:
Smart_greenhouse.action()
Smart_Motion_Detection.detect_with_ultrasonic_and_pir()
LightSense.control_led_with_ldr()
sleep(1)