DIY Temperature Controlled DC Fan Using ESP32 and Blynk | Blynk IoT Projects

Поділитися
Вставка
  • Опубліковано 15 жов 2024

КОМЕНТАРІ • 11

  • @2020MediaChannel
    @2020MediaChannel 2 місяці тому +1

    Hey bro awesome video and could you please add the product links to buy on amazon or flipkart or any other websites. Its actually confusing to buy the exact product as a beginner. Pls bro

    • @TechTrendsShameer
      @TechTrendsShameer  2 місяці тому

      Thanks for the comments. Sure bro. I will update the links soon. 🩷

  • @MOHAMEDSHEBINTP
    @MOHAMEDSHEBINTP 2 місяці тому

    broo can i possible to fix the temperature particular speed and integrate with google assistant...?. Also dht11 or LM35 is best

  • @saikrishna5683
    @saikrishna5683 3 місяці тому

    Can you create Dust alerting system sending alerts to mobile using message sending api or anything...🥺🥺

  • @thiagodesena7435
    @thiagodesena7435 3 місяці тому +1

    Where is the program ?

    • @TechTrendsShameer
      @TechTrendsShameer  3 місяці тому

      github.com/Tech-Trends-Shameer/ESP32-Projects-/tree/main/Temperature-Controlled-Fan-with-ESP32-and-Blynk

  • @sayyadasif4075
    @sayyadasif4075 3 місяці тому

    Good explanation sir ❤❤

  • @Sumit-w2z8n
    @Sumit-w2z8n 2 місяці тому +1

    @user-kf5my5uw9e
    0 seconds ago
    can you help me in correcting this code it give this error WARNING: library LiquidCrystal I2C claims to run on avr architecture(s) and may be incompatible with your current board which runs on esp32 architecture(s).
    In file included from c:\Users\princ\Documents\Arduino\libraries\Blynk\src/BlynkApiArduino.h:14,
    from c:\Users\princ\Documents\Arduino\libraries\Blynk\src/BlynkSimpleEsp32.h:20,
    from C:\Users\princ\Documents\Arduino\sumit\sumit.ino:3:
    c:\Users\princ\Documents\Arduino\libraries\Blynk\src/Blynk/BlynkApi.h:39:6: error: #error "Please specify your BLYNK_TEMPLATE_ID and BLYNK_TEMPLATE_NAME"
    39 | #error "Please specify your BLYNK_TEMPLATE_ID and BLYNK_TEMPLATE_NAME"
    | ^~~~~
    exit status 1
    Compilation error: exit status 1.....
    and code is this..
    #include
    #include
    #include
    #include
    LiquidCrystal_I2C lcd(0x27, 20, 4);
    #include "HX711.h"
    #define DOUT 23
    #define CLK 19
    #define BUZZER 25
    HX711 scale(DOUT, CLK);
    #define BLYNK_PRINT Serial
    char auth[] = "xWQUI2t43MtR6WFw1X-coN8X8q8oKa-n";
    char ssid[] = "*******";
    char pass[] = "********";
    int liter;
    int val;
    float weight;
    float calibration_factor = 102500; // change this value for your Load cell sensor

    void setup() {
    // Set up serial monitor
    Serial.begin(115200);
    lcd.init();
    lcd.backlight();
    pinMode(BUZZER ,OUTPUT);
    Serial.println("Remove all weight from scale");
    scale.set_scale();
    scale.tare(); //Reset the scale to 0
    long zero_factor = scale.read_average(); //Get a baseline reading
    Serial.print("Zero factor: "); //This can be used to remove the need to tare the scale. Useful in permanent scale projects.
    Serial.println(zero_factor);
    Blynk.begin(auth, ssid, pass);
    }
    void loop() {
    Blynk.run();
    measureweight();
    }

    void measureweight(){
    scale.set_scale(calibration_factor); //Adjust to this calibration factor
    weight = scale.get_units(5);
    if(weight

    • @TechTrendsShameer
      @TechTrendsShameer  2 місяці тому

      Which code is this?

    • @Sumit-w2z8n
      @Sumit-w2z8n 2 місяці тому

      @@TechTrendsShameer this code is made my me

    • @Sumit-w2z8n
      @Sumit-w2z8n 2 місяці тому

      @@TechTrendsShameer can you make video on iv driping iot system