User Tools

Site Tools


amc2022:grouph:here

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
amc2022:grouph:here [2022/08/25 23:09] gustavo001amc2022:grouph:here [2023/01/05 14:38] (current) – external edit 127.0.0.1
Line 1: Line 1:
-======  Build ======+======  Build and Set-Up Deep Sleep ESP 32 ======
 {{ :amc2022:grouph:setup_deepsleep.jpeg?nolink&400 |}} {{ :amc2022:grouph:setup_deepsleep.jpeg?nolink&400 |}}
 +//**figure 4.1**// Deep-Sleep set up for ESP32/
 +======  Schematics ======
  
 +{{ :amc2022:grouph:sleep_schematics_amc.png?nolink&400 |}}
 +//**figure 4.2**// Graph depicting Deep-Sleep schematics set up for ESP32/
  
-======  Code ====== 
  
 +======  Code & Description======
  
-<html> +<code c++>
-<pre> +
-<font color="#5e6d03">#define</font> <font color="#000000">uS_TO_S_FACTOR</font> <font color="#000000">1000000</font> &nbsp; +
-<font color="#5e6d03">#define</font> <font color="#000000">TIME_TO_SLEEP</font> &nbsp;<font color="#000000">10</font> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+
  
-<font color="#000000">RTC_DATA_ATTR</font> <font color="#00979c">int</font> <font color="#000000">bootCount</font> <font color="#434f54">=</font> <font color="#000000">0</font><font color="#000000">;</font>+*//There are 2 ways to wake up a system, those are called Interrupts.  
 +*//hardware Interrupts are based on external events where signals are sent to the GPIO. 
 +*//Software Interrupts occur when we program the device, like through a wake up alarm or timer.
  
 +#define uS_TO_S_FACTOR 1000000           *//Equation to convert milliseconds to Minutes
 +#define TIME_TO_SLEEP  10                *//Determined amount of minutes at sleep
  
 +RTC_DATA_ATTR int bootCount = 0;         
  
-<font color="#00979c">void</font> <font color="#000000">print_wakeup_reason</font><font color="#000000">(</font><font color="#000000">)</font><font color="#000000">{</font> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; +*//Data has to be stored in the Real time Clock (RTCfast memory because the CPU memory is wiped on every boot. 
- &nbsp;<font color="#000000">esp_sleep_wakeup_cause_t</font> <font color="#000000">wakeup_reason</font><font color="#000000">;</font>+*// The amount of data has to be minimal due to size limitations : 8bit fast memory and 8bit Slow memory.
  
- &nbsp;<font color="#000000">wakeup_reason</font> <font color="#434f54">=</font> <font color="#000000">esp_sleep_get_wakeup_cause</font><font color="#000000">(</font><font color="#000000">)</font><font color="#000000">;</font>+*//Power outages and resetting the board will erase the RTC memory, therefore its use should be limited to non essential information. 
 +*//Therefore we decided to just Keeping data of times awaken in internal RTC, this will help us see if any issues occur.
  
- &nbsp;<font color="#5e6d03">switch</font><font color="#000000">(</font><font color="#000000">wakeup_reason</font><font color="#000000">)</font> 
- &nbsp;<font color="#000000">{</font> 
- &nbsp;&nbsp;&nbsp;<font color="#5e6d03">case</font> <font color="#000000">ESP_SLEEP_WAKEUP_EXT0</font> <font color="#434f54">:</font> <b><font color="#d35400">Serial</font></b><font color="#434f54">.</font><font color="#d35400">println</font><font color="#000000">(</font><font color="#005c5f">&#34;PUSHED BUTTON caused the system to WAKEUP&#34;</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#5e6d03">break</font><font color="#000000">;</font> 
- &nbsp;&nbsp;&nbsp;<font color="#5e6d03">case</font> <font color="#000000">ESP_SLEEP_WAKEUP_TIMER</font> <font color="#434f54">:</font> <b><font color="#d35400">Serial</font></b><font color="#434f54">.</font><font color="#d35400">println</font><font color="#000000">(</font><font color="#005c5f">&#34;TIMER caused the system to WAKEUP&#34;</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#5e6d03">break</font><font color="#000000">;</font> 
- &nbsp;&nbsp;&nbsp;<font color="#5e6d03">default</font> <font color="#434f54">:</font> <b><font color="#d35400">Serial</font></b><font color="#434f54">.</font><font color="#d35400">printf</font><font color="#000000">(</font><font color="#005c5f">&#34;DeepSleep didn&#39;t wake up ESP32: %d\n&#34;</font><font color="#434f54">,</font><font color="#000000">wakeup_reason</font><font color="#000000">)</font><font color="#000000">;</font> <font color="#5e6d03">break</font><font color="#000000">;</font> 
- &nbsp;<font color="#000000">}</font> 
-<font color="#000000">}</font> 
  
-<font color="#00979c">void</font> <font color="#5e6d03">setup</font><font color="#000000">(</font><font color="#000000">)</font><font color="#000000">{</font> 
- &nbsp;<b><font color="#d35400">Serial</font></b><font color="#434f54">.</font><font color="#d35400">begin</font><font color="#000000">(</font><font color="#000000">115200</font><font color="#000000">)</font><font color="#000000">;</font> 
- &nbsp;<font color="#d35400">delay</font><font color="#000000">(</font><font color="#000000">1000</font><font color="#000000">)</font><font color="#000000">;</font> 
  
- &nbsp;<font color="#d35400">pinMode</font><font color="#000000">(</font><font color="#000000">32</font><font color="#434f54">,</font><font color="#00979c">OUTPUT</font><font color="#000000">)</font><font color="#000000">;</font> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+**************Wake Up Print **************************************************************
  
- &nbsp;<font color="#d35400">pinMode</font><font color="#000000">(</font><font color="#000000">33</font><font color="#434f54">,</font><font color="#00979c">INPUT_PULLUP</font><font color="#000000">)</font><font color="#000000">;</font> &nbsp;+void print_wakeup_reason(){                       *//Set up to list reasons for system wake-up 
 +  esp_sleep_wakeup_cause_t wakeup_reason;
  
- &nbsp;<font color="#5e6d03">for</font><font color="#000000">(</font><font color="#00979c">int</font> <b><font color="#d35400">i</font></b><font color="#434f54">=</font><font color="#000000">0</font><font color="#000000">;</font><b><font color="#d35400">i</font></b><font color="#434f54">&lt;</font><font color="#000000">5</font><font color="#000000">;</font><b><font color="#d35400">i</font></b><font color="#434f54">++</font><font color="#000000">)</font> +  wakeup_reason esp_sleep_get_wakeup_cause();   *//System wakes up due to 3 reasons
-<font color="#000000">{</font> +
- &nbsp;<font color="#d35400">digitalWrite</font><font color="#000000">(</font><font color="#000000">32</font><font color="#434f54">,</font><font color="#00979c">HIGH</font><font color="#000000">)</font><font color="#000000">;</font> &nbsp; +
- &nbsp;<font color="#d35400">delay</font><font color="#000000">(</font><font color="#000000">1000</font><font color="#000000">)</font><font color="#000000">;</font> +
- &nbsp;<font color="#d35400">digitalWrite</font><font color="#000000">(</font><font color="#000000">32</font><font color="#434f54">,</font><font color="#00979c">LOW</font><font color="#000000">)</font><font color="#000000">;</font> +
- &nbsp;<font color="#d35400">delay</font><font color="#000000">(</font><font color="#000000">1000</font><font color="#000000">)</font><font color="#000000">;</font> +
- &nbsp;<font color="#000000">}</font>+
  
 +  switch(wakeup_reason)                           
 +  {
 +    case ESP_SLEEP_WAKEUP_EXT0 : Serial.println("PUSHED BUTTON caused the system to WAKEUP"); break;
 +    case ESP_SLEEP_WAKEUP_TIMER : Serial.println("TIMER caused the system to WAKEUP"); break;
 +    default : Serial.printf("DeepSleep didn't wake up ESP32: %d\n",wakeup_reason); break;   *//Initial Boot will yield this reason
 +  }
 +}
  
-  +*//We made the system wake up due to the internal timer and a pushed button, 
- &nbsp;<font color="#434f54">++</font><font color="#000000">bootCount</font><font color="#000000">;</font> +*// the reason for the push button is that in the case we can take a measurement at our will without having to wait for the timers. 
- &nbsp;<b><font color="#d35400">Serial</font></b><font color="#434f54">.</font><font color="#d35400">println</font><font color="#000000">(</font><font color="#005c5f">&#34;Reboot count number: &#34;</font> <font color="#434f54">+</font> <font color="#00979c">String</font><font color="#000000">(</font><font color="#000000">bootCount</font><font color="#000000">)</font><font color="#000000">)</font><font color="#000000">;</font>+*//An external clock could be added to the device, however Grafana already designates time and date of transferred data. 
 + 
 +void setup(){                   
 +  Serial.begin(115200); 
 +  delay(1000)                 
 + 
 +  pinMode(32,OUTPUT);         *//Illuminates a LED when the system is awake. For visual confirmation. 
 + 
 +  pinMode(33,INPUT_PULLUP)   
 +   
 +   *//ESP32 has pull-up resistors built on the pins, when we activate it 
 +   *//it avoids the use of external resistors  
 +   *//INPUT_PULLUP keeps the signal HIGH by default 
 +   *//floating currents which can produce erroneous readings are avoided by pull up/down resistors 
 + 
 + 
 + 
 +  for(int i=0;i<5;i++)          
 +
 +  digitalWrite(32,HIGH);       *// These are the parameters for the LED flashing  
 +  delay(1000)
 +  digitalWrite(32,LOW); 
 +  delay(1000); 
 +  }
  
- &nbsp; 
- &nbsp;<font color="#000000">print_wakeup_reason</font><font color="#000000">(</font><font color="#000000">)</font><font color="#000000">;</font> 
  
- &nbsp; 
    
- &nbsp;<font color="#000000">esp_sleep_enable_ext0_wakeup</font><font color="#000000">(</font><font color="#000000">GPIO_NUM_33</font><font color="#434f54">,</font><font color="#000000">0</font><font color="#000000">)</font><font color="#000000">;</font>+  ++bootCount; 
 +  Serial.println("Reboot count number: + String(bootCount));     *//We want to know how many times the system has booted 
 +                                                                   *//easy way to know if there are issues internal or battery  
 +                                                                   *//issues 
 +   
 +  print_wakeup_reason(); 
 + 
 +   
 +  
 +  esp_sleep_enable_ext0_wakeup(GPIO_NUM_33,0);                  
 + 
 +*//During Sleep only Pins connected to the RTC are operational 
 +*//A General Purpose Input/output pin are used to perform digital readings and output functions. 
 +*//By default those pins have no predefined purpose. 
 +*//The pin used has to be named after their GPIO  
 + 
  
  
- &nbsp;<font color="#000000">esp_sleep_enable_timer_wakeup</font><font color="#000000">(</font><font color="#000000">TIME_TO_SLEEP</font> <font color="#434f54">*</font> <font color="#000000">uS_TO_S_FACTOR</font><font color="#000000">)</font><font color="#000000">;</font>+  esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR);                   *//conversion factor to minutes
    
- &nbsp;<b><font color="#d35400">Serial</font></b><font color="#434f54">.</font><font color="#d35400">println</font><font color="#000000">(</font><font color="#005c5f">&#34;ESP32 is going into DeepSleep for &#34;</font> <font color="#434f54">+</font> <font color="#00979c">String</font><font color="#000000">(</font><font color="#000000">TIME_TO_SLEEP</font><font color="#000000">)</font> <font color="#434f54">+</font> +  Serial.println("ESP32 is going into DeepSleep for " + String(TIME_TO_SLEEP) +    *//Script detailing the process 
- &nbsp;<font color="#005c5f">&#34; Seconds&#34;</font><font color="#000000">)</font><font color="#000000">;</font>+  " Seconds");
  
  
- &nbsp;<b><font color="#d35400">Serial</font></b><font color="#434f54">.</font><font color="#d35400">println</font><font color="#000000">(</font><font color="#005c5f">&#34;Going to sleep now......&#34;</font><font color="#000000">)</font><font color="#000000">;</font> +  Serial.println("Going to sleep now......");                                        
- &nbsp;<font color="#d35400">delay</font><font color="#000000">(</font><font color="#000000">1000</font><font color="#000000">)</font><font color="#000000">;</font> +  delay(1000); 
- &nbsp;<b><font color="#d35400">Serial</font></b><font color="#434f54">.</font><font color="#d35400">flush</font><font color="#000000">(</font><font color="#000000">)</font><font color="#000000">;</font+  Serial.flush()                                                                 *//To avoid mistakes in data transmission by  
- &nbsp;<font color="#000000">esp_deep_sleep_start</font><font color="#000000">(</font><font color="#000000">)</font><font color="#000000">;</font> +                                                                                   *//clearing buffer 
- &nbsp;+  esp_deep_sleep_start(); 
 +   
 +
 + 
 +</code
 + 
 +*** There is no loop section in our coding because the micro controller will go into deep sleep before reaching that part// 
 +of the code, which means everything has to be written in the void set up section of the sketch.//
  
-</pre> 
  
-</html> 
-======  Description ====== 
 ======  Results ====== ======  Results ======
 {{ :amc2022:grouph:serial_monitor_deepslep.png?nolink&500 |}} {{ :amc2022:grouph:serial_monitor_deepslep.png?nolink&500 |}}
 +
 +
 +
 +
  
amc2022/grouph/here.1661461777.txt.gz · Last modified: 2023/01/05 14:38 (external edit)