##Date and Time
=TIMEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " ")) + DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))
##Date
=DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))
##Time
##Date and Time
=TIMEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " ")) + DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))
##Date
=DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))
##Time
| #!/usr/bin/env /usr/bin/python | |
| # Copyright 2013 Clayton Smith ([email protected]) | |
| # Copyright 2014 Ryan Tucker ([email protected]) | |
| # (Add UDP streaming support, tweak RRC filter) | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. |
| *.d | |
| *.pre | |
| *.p1 | |
| *.lst | |
| *.sym | |
| *.obj | |
| *.o | |
| *.sdb | |
| *.obj.dmp | |
| html/ |
| /* Arduino Temperature/Humidity/Pressure monitor Rev. 2.2A by JS106351 | |
| Originally based from an all analog design, but code was rewritten for digital use. | |
| Example code for the sensors was found online, and modified for this project. */ | |
| //This code is for Arduino 0023 or less only. | |
| // Read temperature/humidity/pressure from sensors and display on 16x2 Character LCD screen | |
| #include <LiquidCrystal.h> | |
| #include <Sensirion.h> |