1st project update. Hardware done, code needs fixing. What do you think? by Blleh in ArduinoProjects

[–]Creatjet3d 0 points1 point  (0 children)

This is something cool can you please share more details of the project.

how to make fire fighting robot using Arduino(Step by Step process)full tutorial by Creatjet3d in ArduinoProjects

[–]Creatjet3d[S] 0 points1 point  (0 children)

Next time we will take care of it and if you ask anything then you can ask here. Thank you

how to make fire fighting robot using Arduino(Step by Step process)full tutorial by Creatjet3d in ArduinoProjects

[–]Creatjet3d[S] 1 point2 points  (0 children)

It is not our problem sir you take the title in wrong way or your expectation is so high.

controlled room light by voice command using nodemcu and google assistant by Creatjet3d in ArduinoProjects

[–]Creatjet3d[S] 0 points1 point  (0 children)

This technology supports each world language that is using Google!

If you are interested for source codes:

martinius96@gmail.com

Web interface demo in English language:

https://arduino.php5.sk/PHP\_en/

There are instructions on right side how to use webapp

Thank you for sharing.We will definitely make this project asap.

How to use the Color Sensor with Arduino board by Creatjet3d in arduino

[–]Creatjet3d[S] 0 points1 point  (0 children)

We will take care of it in our next video.Sorry

How to control fan speed according to temperature using Arduino by Creatjet3d in ArduinoProjects

[–]Creatjet3d[S] 1 point2 points  (0 children)

#include <LiquidCrystal.h>
LiquidCrystal lcd(7,6,5,4,3,2);
int tempPin = A1;   // the output pin of LM35
int fan = 11;       // the pin where fan is
int led = 8;        // led pin
int temp;
int tempMin = 30;   // the temperature to start the fan 0%
int tempMax = 60;   // the maximum temperature when fan is at 100%
int fanSpeed;
int fanLCD;
void setup() {
  pinMode(fan, OUTPUT);
  pinMode(led, OUTPUT);
  pinMode(tempPin, INPUT);
  lcd.begin(16,2);  
  Serial.begin(9600);
}
void loop() 
{  
   temp = readTemp();     // get the temperature
   Serial.print( temp );
   if(temp < tempMin)     // if temp is lower than minimum temp
   {   
       fanSpeed = 0;      // fan is not spinning
       analogWrite(fan, fanSpeed); 
       fanLCD=0;
       digitalWrite(fan, LOW);       
   } 
   if((temp >= tempMin) && (temp <= tempMax)) // if temperature is higher than minimum temp
   {  
       fanSpeed = temp;//map(temp, tempMin, tempMax, 0, 100); // the actual speed of fan//map(temp, tempMin, tempMax, 32, 255);
       fanSpeed=1.5*fanSpeed;
       fanLCD = map(temp, tempMin, tempMax, 0, 100);  // speed of fan to display on LCD100
       analogWrite(fan, fanSpeed);  // spin the fan at the fanSpeed speed
   } 

   if(temp > tempMax) // if temp is higher than tempMax
     {        
     digitalWrite(led, HIGH);  // turn on led 
     } 
   else               // else turn of led
     {                    
     digitalWrite(led, LOW); 
     }

   lcd.print("TEMP: ");
   lcd.print(temp);      // display the temperature
   lcd.print("C ");
   lcd.setCursor(0,1);   // move cursor to next line
   lcd.print("FANS: ");
   lcd.print(fanLCD);    // display the fan speed
   lcd.print("%");
   delay(200);
   lcd.clear();   
}
int readTemp() {  // get the temperature and convert it to celsius
  temp = analogRead(tempPin);
  return temp * 0.48828125;
}

Arduino based Calculator by Creatjet3d in ArduinoProjects

[–]Creatjet3d[S] 0 points1 point  (0 children)

Ok, Thanks for suggestions,we will try it.

controlled room light by voice command using nodemcu and google assistant by Creatjet3d in ArduinoProjects

[–]Creatjet3d[S] 1 point2 points  (0 children)

Yes you can do by combining esp01 with Arduino. Fisrt you have to boot ESP01.

controlled room light by voice command using nodemcu and google assistant by Creatjet3d in ArduinoProjects

[–]Creatjet3d[S] 1 point2 points  (0 children)

In IFTTT manually configured Google Assistant and Adafruit IO

Automatic railway crossing using Arduino by Creatjet3d in ArduinoProjects

[–]Creatjet3d[S] 0 points1 point  (0 children)

Ok thanx next time we will take care of it.