نمایش نتایج: از 1 به 10 از 49
Like Tree8 لایک

موضوع: کمک در باره پروزه به یک مبتدی

Hybrid View

  1. #1
    Senior Member
    تاریخ عضویت
    Oct 2016
    نوشته ها
    112
    نقل قول نوشته اصلی توسط magmagmary نمایش پست ها
    سلام
    سنسورت که داستانش معلومه پس . سنسورهای دمای سری SHT معمولا ارتباط I2C دارن وبا پین انالوگ شماره 4 و 5 آردوینو uno کار می کنن.
    در مورد GSM هم میتونی اینجا جستجو - sim800c رو یه نگاهی بندازی

    در مورد LCD قدرت انتخاب بالاست .
    اگر میتونی هزینه کنی به نظر من بیا سراغ این LCD ها : جستجو - gpu

    اینا ارتباطشون سریاله و گرافیک خیلی خیلی خوبی هم دارن بنابراین کارت راحته .
    اما اگر نمیوای میتونی از LCD های دیگه هم استفاده کنی . فقط ترجیحا سمت SPI نرو چرا که 4 تا پین رو اشغال می کنه .

    درود درباره برنامه نویسی این مازول کمک کنید از ابتدا

  2. #2
    مدیر گروه
    تاریخ عضویت
    Nov 2013
    محل سکونت
    ایران
    نوشته ها
    4,064
    نقل قول نوشته اصلی توسط mohammadali نمایش پست ها
    درود درباره برنامه نویسی این مازول کمک کنید از ابتدا
    درمورد کد نویسی هم این کد برای sim800L نوشته شده روی C هم باید جواب بده .
    کد:
    #include <SoftwareSerial.h>
    SoftwareSerial SIM800(D2, D1 , 128);
    #define GSMReset D3
    
    
    
    
    void setup() {
      Serial.begin(9600); // for serial monitor
      SIM800.begin(9600); // for GSM shield
      gsmPower();
      gsmConfig();
      dialNumber() ;
    }
    
    
    
    
    void loop() {
      commandDetect();
    }
    //*********************************************************************************
    void gsmConfig() {
      sendCommand("ATZ", 100);
      sendCommand("AT+CMGD=1,4", 200);
      sendCommand("AT+CMGF=1\r", 100); // set SMS mode to text
      sendCommand("AT+CFUN=1", 2000);
      sendCommand("AT+CREG?", 1000);
      dtmfActive();
      anwerCall();
      Serial.println("The end of Config process");
      Serial.println("Ensert\n 'd' for dial \n 'e' for english sms \n 'f' for farsi sms \n 'h' for HttpRequest \n 's' for Send2Pachube  ");
    }
    //**********************************************************************************
    void showSms() {
      char incoming_char = 0;
      if ( SIM800.available() > 0)
      {
        incoming_char =  SIM800.read(); //Get the character from the cellular serial port.
        Serial.print(incoming_char); //Print the incoming character to the terminal.
      }
    }
    //***********************************************************************************
    void smsProcess() {
      char incoming_char = 0;
      if ( SIM800.available() > 0)
      {
    
    
    
    
        incoming_char =  SIM800.read();
        if (incoming_char == 'A')
        {
          delay(10);
          incoming_char =  SIM800.read();
          if (incoming_char == 'd')
          {
            delay(10);
            Serial.print("horaaaaaaaaaaaaaaaaaaay");
          }
        }
      }
    }
    //***********************************************************************************
    void gsmPower() {
      pinMode(GSMReset, OUTPUT);
      Serial.println("Turning GSM ON");
      digitalWrite(GSMReset, HIGH);
     // delay(1100);
      //digitalWrite(GSMReset, LOW);
     // delay(4000);
      Serial.println("Start config process...");
    }
    
    
    
    
    //**********************************************************************************
    
    
    
    
    void sendCommand(String cmd, int t)
    {
      SIM800.println(cmd);
      readSerial();
      delay(t);
    }
    
    
    
    
    //**************************************************************************************
    void readSerial( ) {
      while (SIM800.available())
      {
        Serial.write(SIM800.read());
      }
    }
    
    
    
    
    //***********************************************************************************
    
    
    
    
    void dialNumber() {
      Serial.println("Dialing...");
      sendCommand("ATD09177102643;", 100);
      Serial.println("End of Dial process");
      delay(2000);
      Serial.println("Ensert\n 'd' for dial \n 'e' for english sms \n 'f' for farsi sms \n 'h' for HttpRequest \n 's' for Send2Pachube  ");
    }
    //************************************************************************************
    void ensms()
    {
      Serial.println("Sending SMS");
      sendCommand("AT+CSCS=\"GSM\"", 200);
      sendCommand("AT+CMGF=1", 200);
      sendCommand("AT+CSMP=17,167,0,0", 200);
      sendCommand("AT+CMGS=\"09177102643\"", 500);
      sendCommand("Salam\n manam !\x1A", 500);
      Serial.println("Englisg SMS Sent");
      Serial.println("Ensert\n 'd' for dial \n 'e' for english sms \n 'f' for farsi sms \n 'h' for HttpRequest \n 's' for Send2Pachube  ");
    }
    
    
    
    
    //****************************************************************************************
    void farsisms()
    {
      Serial.println("Sending SMS");
      sendCommand("AT+CSCS=\"HEX\"", 100);
      sendCommand("AT+CMGF=1", 100);
      sendCommand("AT+CSMP=17,167,0,8", 100);
      sendCommand("AT+CMGS=\"09177102643\"", 500);
      sendCommand("0633064406270645060C002006220641062A0627062800200631062706CC062706460647\x1A", 0);
      Serial.println("Persian SMS Sent");
      Serial.println("Ensert\n 'd' for dial \n 'e' for english sms \n 'f' for farsi sms \n 'h' for HttpRequest \n 's' for Send2Pachube  ");
    }
    //*******************************************************************************************
    void commandDetect() {
    
    
    
    
      if (Serial.available() > 0)
      {
        char data = Serial.read();
        switch (data)
        {
          case 'd' :
            dialNumber();
            break;
    
    
    
    
          case 'e' : ensms();
            break;
    
    
    
    
          case 'f' : farsisms();
            break;
    
    
    
    
          case 'h':
            SubmitHttpRequest();
            break;
    
    
    
    
          case 's':
            Send2Pachube();
            break;
        }
      }
    }
    
    
    
    
    //******************************************************************************************************
    void SubmitHttpRequest()
    {
      sendCommand("AT+CSQ", 100);
      sendCommand("AT+CGATT?", 100);
      sendCommand("AT+SAPBR=3,1,\"CONTYPE\",\"GPRS\"", 1000); //setting the SAPBR, the connection type is using gprs
      sendCommand("AT+SAPBR=3,1,\"APN\",\"CMNET\"", 4000); //setting the APN, the second need you fill in your local apn server
      sendCommand("AT+SAPBR=1,1", 2000); //setting the SAPBR, for detail you can refer to the AT command mamual
      sendCommand("AT+HTTPINIT", 2000); //init the HTTP request
      sendCommand("AT+HTTPPARA=\"URL\",\"www.google.com.hk\"", 1000); // setting the httppara, the second parameter is the website you want to access
      sendCommand("AT+HTTPACTION=0", 10000); //submit the request
      sendCommand("AT+HTTPREAD", 300); // read the data from the website you access
      sendCommand("", 100);
      delay(2000);
      Serial.println("Ensert\n 'd' for dial \n 'e' for english sms \n 'f' for farsi sms \n 'h' for HttpRequest \n 's' for Send2Pachube  ");
    }
    
    
    
    
    //*************************************************************************************************************************
    ///send2Pachube()///
    ///this function is to send the sensor data to the pachube, you can see the new value in the pachube after execute this function///
    void Send2Pachube()
    {
      sendCommand("AT+CGATT?", 1000);
      sendCommand("AT+CSTT=\"CMNET\"", 1000); //start task and setting the APN,
      sendCommand("AT+CIICR", 3000); //bring up wireless connection
      sendCommand("AT+CIFSR", 2000); //get local IP adress
      sendCommand("AT+CIPSPRT=0", 3000);
      sendCommand("AT+CIPSTART=\"tcp\",\"api.cosm.com\",\"8081\"", 2000); //start up the connection
      sendCommand("AT+CIPSEND", 4000); //begin send data to remote server
    
    
    
    
      String humidity = "1031";//these 4 line code are imitate the real sensor data, because the demo did't add other sensor, so using 4 string variable to replace.
      String moisture = "1242";//you can replace these four variable to the real sensor data in your project
      String temperature = "30";//
      String barometer = "60.56";//
      sendCommand("{\"method\": \"put\",\"resource\": \"/feeds/42742/\",\"params\"", 500); //here is the feed you apply from pachube
      sendCommand(": {},\"headers\": {\"X-PachubeApiKey\":", 500); //in here, you should replace your pachubeapikey
      sendCommand(" \"_cXwr5LE8qW4a296O-cDwOUvfddFer5pGmaRigPsiO0", 500); //pachubeapikey
      sendCommand("jEB9OjK-W6vej56j9ItaSlIac-hgbQjxExuveD95yc8BttXc", 500); //pachubeapikey
      sendCommand("Z7_seZqLVjeCOmNbEXUva45t6FL8AxOcuNSsQS\"},\"body\":", 500);
      sendCommand(" {\"version\": \"1.0.0\",\"datastreams\": ", 500);
      sendCommand("[{\"id\": \"01\",\"current_value\": \"" + barometer + "\"},", 500);
      sendCommand("{\"id\": \"02\",\"current_value\": \"" + humidity + "\"},", 500);
      sendCommand("{\"id\": \"03\",\"current_value\": \"" + moisture + "\"},", 500);
      sendCommand("{\"id\": \"04\",\"current_value\": \"" + temperature + "\"}]},\"token\": \"lee\"}", 500);
      SIM800.println(); ((char)26); //sending
      delay(5000);
      SIM800.println();
      sendCommand("AT+CIPCLOSE", 100); //close the connection
      delay(2000);
      Serial.println("Ensert\n 'd' for dial \n 'e' for english sms \n 'f' for farsi sms \n 'h' for HttpRequest \n 's' for Send2Pachube  ");
    
    
    
    
    }
    
    
    
    
    //******************************************************************************************************************
    void dtmfActive() {
      sendCommand("AT+DDET=1", 200);
    }
    
    
    
    
    
    
    
    
    //***************************************************************
    void anwerCall() {
      sendCommand("ATS0=3", 200);
    }
    
    
    
    
    void blinkd16(){
      pinMode(16,OUTPUT);
      digitalWrite(16,HIGH);
      delay(100);
      digitalWrite(16,LOW);
        delay(100);
      }

  3. #3
    Senior Member
    تاریخ عضویت
    Oct 2016
    نوشته ها
    112
    این کل چیزی که نوشتم دیبایسینگ هم توش استفاده کردم ولی خوب خیلی کند هستش .
    کد:
      #include <EEPROM.h>
      #include <Bounce2.h>
      #include <Wire.h> 
      #include <LiquidCrystal_I2C.h>
      #include "RTClib.h"    
      #include <SoftwareSerial.h>;
      #include "JDateLib.h"
      #include <SHT1x.h>
     
      #define setBUTTON 13
      #define upBUTTON 11
      #define downBUTTON 12   
      #define dataPin  8
      #define clockPin 9  
    
      Bounce set;
      Bounce up;
      Bounce down;
      
      LiquidCrystal_I2C lcd(0x3F,16,2);
      SoftwareSerial Bolo(2,3); 
      RTC_DS1307 RTC;
      SHT1x sht1x(dataPin, clockPin);
      
      unsigned long prevMillis = 0;
      unsigned long currentmillis = millis();
      static byte prevsetButton;
      static byte  prevSetMode;
      byte setMode;
      int tempmax = 20;
      int tempmin = 20;
      int Humiditymin = 20;
      int Humiditymax = 20;
      int state;
      String jdate;            
      int JY,JM,JD;           
      const int rala1  = 4;
      const int rala2  = 5;  
      const int rala3  = 6; 
      const int rala4  = 7;  
      byte termometru[8] ={B00100,B01010,B01010,B01110,B01110,B11111,B11111,B01110};
      byte picatura[8] = {B00100,B00100,B01010,B01010,B10001,B10001,B10001,B01110,};
      byte m[8] = {B00000,B00000,B10001,B01010,B00100,B10001,B01010,B00100,};
      byte x[8] = {B00000,B00000,B00100,B01010,B10001,B00100,B01010,B10001,};
      byte l[8] = {B00001,B00011,B00111,B01111,B01111,B00111,B00011,B00001,};
      byte k[8] = {B10000,B11000,B11100,B11110,B11110,B11100,B11000,B10000,}; 
    
    void setup(){
      lcd.begin(16,2);
      lcd.clear();
      lcd.init();                     
      lcd.backlight();
      lcd.createChar(1,termometru);
      lcd.createChar(2,picatura);
      lcd.createChar(3,x);
      lcd.createChar(4,m);
      lcd.createChar(5,l);
      lcd.createChar(6,k);
      Serial.begin(9600);
      Bolo.begin(9600);
      Wire.begin();
    
      pinMode(rala1, OUTPUT);
      pinMode(rala2, OUTPUT);
      pinMode(rala3, OUTPUT);
      pinMode(rala4, OUTPUT);
      pinMode(setBUTTON,INPUT_PULLUP);
      pinMode(upBUTTON,INPUT_PULLUP);
      pinMode(downBUTTON,INPUT_PULLUP);
    
        set.attach (setBUTTON);
        set.interval(30);
        up.attach (upBUTTON);
        up.interval(30);
        down.attach (downBUTTON);
        down.interval(30);;
    
      
      digitalWrite(rala1, HIGH);
      digitalWrite(rala2, HIGH);
      digitalWrite(rala3, HIGH);
      digitalWrite(rala4, HIGH); 
    
      tempmax = EEPROM.read(0);
      tempmin = EEPROM.read(1); 
      Humiditymin = EEPROM.read(2);
      Humiditymax = EEPROM.read(3); 
      
      
      }
    
    void loop(){
    
      set.update();
      up.update();
      down.update();
    if ( setMode != 0) {
        if (currentmillis - prevMillis >= 10000UL) {
          setMode = 0;
          prevMillis = currentmillis;
        }}
    prevsetButton = setBUTTON;  
    
      if (setMode >= 5) {
        setMode = 0;
      }
      if (setMode != prevSetMode) {
        lcd.clear();
        prevSetMode = setMode;
      }
        
     if (set.fell()) {  setMode++;  } 
       
       DateTime now=RTC.now();
       show_time_and_date(now);    }
       void show_time_and_date(DateTime datetime){
       
       float h = sht1x.readHumidity();
       float t = sht1x.readTemperatureC();  
    
      switch (setMode) {
          case 0://normal
      lcd.setCursor(0,0);
      if(datetime.hour()<10)lcd.print("0");
      lcd.print(datetime.hour(),DEC);
      lcd.print(":");
      if(datetime.minute()<10)lcd.print("0");
      lcd.print(datetime.minute(),DEC);
      lcd.setCursor(8, 0);
     Date now(datetime.year(),datetime. month(), datetime.day());
      JY = now.JYear();
      JM = now.JMonth();
      JD = now.JDay();
      lcd.print((JY)-1300);
      lcd.print("/");
      if(JD<10)lcd.print("0");
      lcd.print(JD,DEC);
      lcd.print("/"); 
      if(JM<10)lcd.print("0");
      lcd.print(JM,DEC); 
      lcd.setCursor(1, 1);
      lcd.write(1);
      lcd.setCursor(3, 1);
      lcd.print(t,1);
      lcd.setCursor(5, 1);
      lcd.print((char)223); 
      lcd.print("C");
      lcd.setCursor(9, 1);
      lcd.write(2);
      lcd.setCursor(11, 1);
      lcd.print(h, 1);
      lcd.println("%");
       prevMillis = currentmillis;
          break;  }
    switch (setMode) {
          case 1:
       if (up.fell())    {  tempmin++;  }
       if (down.fell())  {  tempmin--;  }
      lcd.print("    Set temp:"); 
      lcd.setCursor(1, 1);
      lcd.write(4);
      lcd.setCursor(2, 1);
      lcd.print(tempmin);
      lcd.setCursor(4, 1);
      lcd.write(5);
      lcd.setCursor(12, 1);
      lcd.write(3);
      lcd.setCursor(13, 1);
      lcd.print(tempmax);                 
      EEPROM.write(1, tempmin);
          break;  }
    switch (setMode) {
          case 2:
      if (up.fell())    {  tempmax++;  }
      if (down.fell())  {  tempmax--;  }
      lcd.print("    Set temp:"); 
      lcd.setCursor(1, 1);
      lcd.write(4);
      lcd.setCursor(2, 1);
      lcd.print(tempmin);
      lcd.setCursor(11, 1);
      lcd.write(6);
      lcd.setCursor(12, 1);
      lcd.write(3);
      lcd.setCursor(13, 1);
      lcd.print(tempmax);                 
      EEPROM.write(0, tempmax); 
      break;     }                   
    
    switch (setMode) {
          case 3:
      if (up.fell())    {  Humiditymin++;  }
      if (down.fell())  {  Humiditymin--;  }
      lcd.print("  Set Humidity:"); 
      lcd.setCursor(1, 1);
      lcd.write(4);
      lcd.setCursor(2, 1);
      lcd.print(Humiditymin);
      lcd.setCursor(4, 1);
      lcd.write(5);
      lcd.setCursor(12, 1);
      lcd.write(3);
      lcd.setCursor(13, 1);
      lcd.print(Humiditymax);               
      EEPROM.write(2, Humiditymin);   
      break;    }         
    
    switch (setMode) {
          case 4:
      if (up.fell())    {  Humiditymin++;  }
      if (down.fell())  {  Humiditymin--;  }
      if (digitalRead(upBUTTON) == LOW)   {  Humiditymax++;  }
      if (digitalRead(downBUTTON) == LOW) {  Humiditymax--;  }
      lcd.print("  Set Humidity:"); 
      lcd.setCursor(1, 1);
      lcd.write(4);
      lcd.setCursor(2, 1);
      lcd.print(Humiditymin);
      lcd.setCursor(11, 1);
      lcd.write(6);
      lcd.setCursor(12, 1);
      lcd.write(3);
      lcd.setCursor(13, 1);
      lcd.print(Humiditymax);                
      EEPROM.write(3, Humiditymax);   
      break;      }      
      
    if(Bolo.available())  {state = Bolo.read();}
    if (state == '1') {
         digitalWrite(rala1, LOW);
         digitalWrite(rala2, LOW);         }
    else if (state == '0') {
         digitalWrite(rala1, HIGH);
         digitalWrite(rala2, HIGH);        }
    else if (state == 'A') {digitalWrite(rala1,LOW); }
    else if (state == 'a') {digitalWrite(rala1,HIGH);}  
    else if (state == 'B') {digitalWrite(rala2,LOW); }
    else if (state == 'b') {digitalWrite(rala2,HIGH);}    
        
    if( t <= tempmin )              {digitalWrite(rala4,LOW);  Bolo.print("       T on");  }
    else if( t >= tempmax )         {digitalWrite(rala4,HIGH); Bolo.print("       T off"); } 
    if( h <= Humiditymin )          {digitalWrite(rala3,LOW);  Bolo.print("          H on");  }
    else if( h >= Humiditymax )     {digitalWrite(rala3,HIGH); Bolo.print("          H off"); }
      
    
      Bolo.print(t,1);
      Bolo.print("C");
      Bolo.print("      ");
      Bolo.print(h,1 );
      Bolo.println("%");
      Bolo.print("         tmin : ");
      Bolo.print(tempmin );
      Bolo.print("         tmax : ");
      Bolo.print(tempmax );
      Bolo.print("         Hmin : ");
      Bolo.print(Humiditymin );
      Bolo.print("         Hmax : ");
      Bolo.print(Humiditymax );
       }
    [/QUOTE]

  4. #4
    مدیر گروه
    تاریخ عضویت
    Nov 2013
    محل سکونت
    ایران
    نوشته ها
    4,064
    نقل قول نوشته اصلی توسط mohammadali نمایش پست ها
    این کل چیزی که نوشتم دیبایسینگ هم توش استفاده کردم ولی خوب خیلی کند هستش .
    کد:
      #include <EEPROM.h>
      #include <Bounce2.h>
      #include <Wire.h> 
      #include <LiquidCrystal_I2C.h>
      #include "RTClib.h"    
      #include <SoftwareSerial.h>;
      #include "JDateLib.h"
      #include <SHT1x.h>
     
      #define setBUTTON 13
      #define upBUTTON 11
      #define downBUTTON 12   
      #define dataPin  8
      #define clockPin 9  
    
      Bounce set;
      Bounce up;
      Bounce down;
      
      LiquidCrystal_I2C lcd(0x3F,16,2);
      SoftwareSerial Bolo(2,3); 
      RTC_DS1307 RTC;
      SHT1x sht1x(dataPin, clockPin);
      
      unsigned long prevMillis = 0;
      unsigned long currentmillis = millis();
      static byte prevsetButton;
      static byte  prevSetMode;
      byte setMode;
      int tempmax = 20;
      int tempmin = 20;
      int Humiditymin = 20;
      int Humiditymax = 20;
      int state;
      String jdate;            
      int JY,JM,JD;           
      const int rala1  = 4;
      const int rala2  = 5;  
      const int rala3  = 6; 
      const int rala4  = 7;  
      byte termometru[8] ={B00100,B01010,B01010,B01110,B01110,B11111,B11111,B01110};
      byte picatura[8] = {B00100,B00100,B01010,B01010,B10001,B10001,B10001,B01110,};
      byte m[8] = {B00000,B00000,B10001,B01010,B00100,B10001,B01010,B00100,};
      byte x[8] = {B00000,B00000,B00100,B01010,B10001,B00100,B01010,B10001,};
      byte l[8] = {B00001,B00011,B00111,B01111,B01111,B00111,B00011,B00001,};
      byte k[8] = {B10000,B11000,B11100,B11110,B11110,B11100,B11000,B10000,}; 
    
    void setup(){
      lcd.begin(16,2);
      lcd.clear();
      lcd.init();                     
      lcd.backlight();
      lcd.createChar(1,termometru);
      lcd.createChar(2,picatura);
      lcd.createChar(3,x);
      lcd.createChar(4,m);
      lcd.createChar(5,l);
      lcd.createChar(6,k);
      Serial.begin(9600);
      Bolo.begin(9600);
      Wire.begin();
    
      pinMode(rala1, OUTPUT);
      pinMode(rala2, OUTPUT);
      pinMode(rala3, OUTPUT);
      pinMode(rala4, OUTPUT);
      pinMode(setBUTTON,INPUT_PULLUP);
      pinMode(upBUTTON,INPUT_PULLUP);
      pinMode(downBUTTON,INPUT_PULLUP);
    
        set.attach (setBUTTON);
        set.interval(30);
        up.attach (upBUTTON);
        up.interval(30);
        down.attach (downBUTTON);
        down.interval(30);;
    
      
      digitalWrite(rala1, HIGH);
      digitalWrite(rala2, HIGH);
      digitalWrite(rala3, HIGH);
      digitalWrite(rala4, HIGH); 
    
      tempmax = EEPROM.read(0);
      tempmin = EEPROM.read(1); 
      Humiditymin = EEPROM.read(2);
      Humiditymax = EEPROM.read(3); 
      
      
      }
    
    void loop(){
    
      set.update();
      up.update();
      down.update();
    if ( setMode != 0) {
        if (currentmillis - prevMillis >= 10000UL) {
          setMode = 0;
          prevMillis = currentmillis;
        }}
    prevsetButton = setBUTTON;  
    
      if (setMode >= 5) {
        setMode = 0;
      }
      if (setMode != prevSetMode) {
        lcd.clear();
        prevSetMode = setMode;
      }
        
     if (set.fell()) {  setMode++;  } 
       
       DateTime now=RTC.now();
       show_time_and_date(now);    }
       void show_time_and_date(DateTime datetime){
       
       float h = sht1x.readHumidity();
       float t = sht1x.readTemperatureC();  
    
      switch (setMode) {
          case 0://normal
      lcd.setCursor(0,0);
      if(datetime.hour()<10)lcd.print("0");
      lcd.print(datetime.hour(),DEC);
      lcd.print(":");
      if(datetime.minute()<10)lcd.print("0");
      lcd.print(datetime.minute(),DEC);
      lcd.setCursor(8, 0);
     Date now(datetime.year(),datetime. month(), datetime.day());
      JY = now.JYear();
      JM = now.JMonth();
      JD = now.JDay();
      lcd.print((JY)-1300);
      lcd.print("/");
      if(JD<10)lcd.print("0");
      lcd.print(JD,DEC);
      lcd.print("/"); 
      if(JM<10)lcd.print("0");
      lcd.print(JM,DEC); 
      lcd.setCursor(1, 1);
      lcd.write(1);
      lcd.setCursor(3, 1);
      lcd.print(t,1);
      lcd.setCursor(5, 1);
      lcd.print((char)223); 
      lcd.print("C");
      lcd.setCursor(9, 1);
      lcd.write(2);
      lcd.setCursor(11, 1);
      lcd.print(h, 1);
      lcd.println("%");
       prevMillis = currentmillis;
          break;  }
    switch (setMode) {
          case 1:
       if (up.fell())    {  tempmin++;  }
       if (down.fell())  {  tempmin--;  }
      lcd.print("    Set temp:"); 
      lcd.setCursor(1, 1);
      lcd.write(4);
      lcd.setCursor(2, 1);
      lcd.print(tempmin);
      lcd.setCursor(4, 1);
      lcd.write(5);
      lcd.setCursor(12, 1);
      lcd.write(3);
      lcd.setCursor(13, 1);
      lcd.print(tempmax);                 
      EEPROM.write(1, tempmin);
          break;  }
    switch (setMode) {
          case 2:
      if (up.fell())    {  tempmax++;  }
      if (down.fell())  {  tempmax--;  }
      lcd.print("    Set temp:"); 
      lcd.setCursor(1, 1);
      lcd.write(4);
      lcd.setCursor(2, 1);
      lcd.print(tempmin);
      lcd.setCursor(11, 1);
      lcd.write(6);
      lcd.setCursor(12, 1);
      lcd.write(3);
      lcd.setCursor(13, 1);
      lcd.print(tempmax);                 
      EEPROM.write(0, tempmax); 
      break;     }                   
    
    switch (setMode) {
          case 3:
      if (up.fell())    {  Humiditymin++;  }
      if (down.fell())  {  Humiditymin--;  }
      lcd.print("  Set Humidity:"); 
      lcd.setCursor(1, 1);
      lcd.write(4);
      lcd.setCursor(2, 1);
      lcd.print(Humiditymin);
      lcd.setCursor(4, 1);
      lcd.write(5);
      lcd.setCursor(12, 1);
      lcd.write(3);
      lcd.setCursor(13, 1);
      lcd.print(Humiditymax);               
      EEPROM.write(2, Humiditymin);   
      break;    }         
    
    switch (setMode) {
          case 4:
      if (up.fell())    {  Humiditymin++;  }
      if (down.fell())  {  Humiditymin--;  }
      if (digitalRead(upBUTTON) == LOW)   {  Humiditymax++;  }
      if (digitalRead(downBUTTON) == LOW) {  Humiditymax--;  }
      lcd.print("  Set Humidity:"); 
      lcd.setCursor(1, 1);
      lcd.write(4);
      lcd.setCursor(2, 1);
      lcd.print(Humiditymin);
      lcd.setCursor(11, 1);
      lcd.write(6);
      lcd.setCursor(12, 1);
      lcd.write(3);
      lcd.setCursor(13, 1);
      lcd.print(Humiditymax);                
      EEPROM.write(3, Humiditymax);   
      break;      }      
      
    if(Bolo.available())  {state = Bolo.read();}
    if (state == '1') {
         digitalWrite(rala1, LOW);
         digitalWrite(rala2, LOW);         }
    else if (state == '0') {
         digitalWrite(rala1, HIGH);
         digitalWrite(rala2, HIGH);        }
    else if (state == 'A') {digitalWrite(rala1,LOW); }
    else if (state == 'a') {digitalWrite(rala1,HIGH);}  
    else if (state == 'B') {digitalWrite(rala2,LOW); }
    else if (state == 'b') {digitalWrite(rala2,HIGH);}    
        
    if( t <= tempmin )              {digitalWrite(rala4,LOW);  Bolo.print("       T on");  }
    else if( t >= tempmax )         {digitalWrite(rala4,HIGH); Bolo.print("       T off"); } 
    if( h <= Humiditymin )          {digitalWrite(rala3,LOW);  Bolo.print("          H on");  }
    else if( h >= Humiditymax )     {digitalWrite(rala3,HIGH); Bolo.print("          H off"); }
      
    
      Bolo.print(t,1);
      Bolo.print("C");
      Bolo.print("      ");
      Bolo.print(h,1 );
      Bolo.println("%");
      Bolo.print("         tmin : ");
      Bolo.print(tempmin );
      Bolo.print("         tmax : ");
      Bolo.print(tempmax );
      Bolo.print("         Hmin : ");
      Bolo.print(Humiditymin );
      Bolo.print("         Hmax : ");
      Bolo.print(Humiditymax );
       }
    [/QUOTE]
    کدی که من زدمو برات فرستادم رو ببین
    بدون استفاده از دیبانس
    فقط پینهای سوئیچم رو inputpullup کردم و استفاده کردم .
    سرعتش واکنش سوئیچ هاش مناسبه
    میتونه با delay (200) ای که گذاشتم بازی کنی و سرعت مطلوبت رو تنظیم کنی

مجوز های ارسال و ویرایش

  • شما نمیتوانید موضوع جدیدی ارسال کنید
  • شما امکان ارسال پاسخ را ندارید
  • شما نمیتوانید فایل پیوست کنید.
  • شما نمیتوانید پست های خود را ویرایش کنید
  •  

SEO by vBSEO