Title: Simple Sabotage Field Manual Author: Strategic Services Office of Strategic Services
##Date and Time
=TIMEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " ")) + DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))
##Date
=DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))
##Time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env /usr/bin/python | |
| # Copyright 2013 Clayton Smith (argilo@gmail.com) | |
| # Copyright 2014 Ryan Tucker (rtucker@gmail.com) | |
| # (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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *.d | |
| *.pre | |
| *.p1 | |
| *.lst | |
| *.sym | |
| *.obj | |
| *.o | |
| *.sdb | |
| *.obj.dmp | |
| html/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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> |
NewerOlder