-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (116 loc) · 3.44 KB
/
index.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Presentation Hub</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
</head>
<body>
<table class="table table-striped table-hover">
<thead>
<tr>
<th scope="col">Presentation Date</th>
<th scope="col">Title</th>
<th scope="col">Venue</th>
</tr>
</thead>
<tbody>
<tr>
<td>07 November 2024</td>
<td>
<a
href="https://ag-informatics.github.io/ag-informatics-course/module6/Lecture6.2.html"
>ASM 53200 Lecture 6.2</a
>
</td>
<td>ASM 532 Fall 2024</td>
</tr>
<tr>
<td>05 November 2024</td>
<td>
<a href="./dac/dashboard.html"
>DAC: Sensor Connectivity and Basic Dashboard</a
>
</td>
<td>Purdue Digital Agricultural Club</td>
</tr>
<tr>
<td>31 October 2024</td>
<td>
<a
href="https://ag-informatics.github.io/ag-informatics-course/module6/Lecture6.1.html"
>ASM 53200 Lecture 6.1</a
>
</td>
<td>ASM 532 Fall 2024</td>
</tr>
<tr>
<td>01 October 2024</td>
<td>
<a href="./dac/sensor.html">DAC: How to Choose and Use sensors</a>
</td>
<td>Purdue Digital Agricultural Club</td>
</tr>
<tr>
<td>14 February 2024</td>
<td>
<a href="./dac/motor.html"
>DAC: Introduction to Electrical Motors</a
>
</td>
<td>Purdue Digital Agricultural Club</td>
</tr>
<tr>
<td>04 December 2023</td>
<td>
<a href="./dac/mqtt.html"
>DAC: Connecting Sensors to the Internet</a
>
</td>
<td>Purdue Digital Agricultural Club</td>
</tr>
<tr>
<td>21 November 2023</td>
<td>
<a href="./dac/soil-moisture.html">DAC: Reading Soil Moisture</a>
</td>
<td>Purdue Digital Agricultural Club</td>
</tr>
<tr>
<td>02 November 2023</td>
<td><a href="./asm591-lecture6.2.html">ASM 59100 Lecture 6.2</a></td>
<td>ASM 59100 Fall 2023</td>
</tr>
<tr>
<td>31 October 2023</td>
<td><a href="./asm591-lecture6.1.html">ASM 59100 Lecture 6.1</a></td>
<td>ASM 59100 Fall 2023</td>
</tr>
<tr>
<td>22 September 2023</td>
<td>
<a href="./abe697.html">
Detecting Chemical Drift Damages on Water Hemp Using RGB Images
from Mobile Phone</a
>
</td>
<td>ABE 69700 Fall 2023</td>
</tr>
</tbody>
</table>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
</body>
</html>