-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesp8266DailyTask.html
84 lines (70 loc) · 4.36 KB
/
esp8266DailyTask.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="es">
<head>
<meta name="description=" content="curso tutorial aprende arduino básico desde cero facíl">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Curso Arduino">
<meta name="author" content="Studio Miranda">
<title>arduinoes</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<!-- <link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'> -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto&display=swap" rel="stylesheet" type='text/css'>
<link href="css/studio.css" rel="stylesheet">
</head>
<body>
<!-- Sección -->
<div class="container" style = "margin-top: 50px">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<div class="miranda">
<!-- Project Details Go Here -->
<h2 class="text-uppercase text-center"><bl>ESP8266</bl></h2>
<br>
<img class="img-fluid d-block mx-auto" src="img/tutoriales/Arduino1.png" alt="">
<br>
<h2 class="text-center"><or>Tarea Diaria en ESP</or></h2>
<br>
<div class="text-left">
<!-- <p><a href="https://github.com/HarringayMakerSpace/ESPDailyTask"><or>Ejemplos</or></h3></a></p> -->
<!-- ESP8266 -->
<h4>ESPDailyTask</h4>
<p>Este es un ejemplo de la <a href="https://github.com/HarringayMakerSpace/ESPDailyTask"><or>Biblioteca ESPDailyTask</or></a></p>
<img class="img-fluid d-block mx-auto" src="img/esp/ESPDailyTask-01.png" alt="">
<br>
<pre class="hljs" style="display: block; overflow-x: auto; padding: 0.5em; background: rgb(240, 240, 240); color: rgb(68, 68, 68);"><span class="hljs-comment" style="color: rgb(136, 136, 136);">/*
* This sketch shows an example of using the ESPDailyTask library
*
* The Harringay Maker Space
* License: Apache License v2
*
*/</span>
<span class="hljs-meta" style="color: rgb(31, 113, 153);">#<span class="hljs-meta-keyword" style="font-weight: 700;">include</span> <span class="hljs-meta-string" style="color: rgb(77, 153, 191);"><ESP8266WiFi.h></span></span>
<span class="hljs-meta" style="color: rgb(31, 113, 153);">#<span class="hljs-meta-keyword" style="font-weight: 700;">include</span> <span class="hljs-meta-string" style="color: rgb(77, 153, 191);"><ESPDailyTask.h></span></span>
<span class="hljs-function">ESPDailyTask <span class="hljs-title" style="color: rgb(136, 0, 0); font-weight: 700;">dailyTask</span><span class="hljs-params">(<span class="hljs-number" style="color: rgb(136, 0, 0);">16</span>*<span class="hljs-number" style="color: rgb(136, 0, 0);">60</span>)</span></span>; <span class="hljs-comment" style="color: rgb(136, 136, 136);">// Hour to do the task - 16 for 4pm</span>
<span class="hljs-function"><span class="hljs-keyword" style="font-weight: 700;">void</span> <span class="hljs-title" style="color: rgb(136, 0, 0); font-weight: 700;">setup</span><span class="hljs-params">()</span> </span>{
dailyTask.sleep1Day();
<span class="hljs-comment" style="color: rgb(136, 136, 136);">// put your daily code here...</span>
<span class="hljs-comment" style="color: rgb(136, 136, 136);">// and back to sleep once daily code is done </span>
dailyTask.backToSleep();
}
dailyTask.timeAdjustFromDateHeader(client);
<span class="hljs-function"><span class="hljs-keyword" style="font-weight: 700;">void</span> <span class="hljs-title" style="color: rgb(136, 0, 0); font-weight: 700;">loop</span><span class="hljs-params">()</span> </span>{
<span class="hljs-comment" style="color: rgb(136, 136, 136);">// sleeping so wont get here</span>
}
</pre>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>