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
# Takes one URL per line on the clipboard. | |
# Opens each one in a new tab in the default browser. | |
touch temp.txt | |
pbpaste > temp.txt | |
echo "" >> temp.txt | |
cat temp.txt | while read a; do open $a; done | |
rm temp.txt |
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
#include <LiquidCrystal.h> | |
LiquidCrystal lcd(12, 11, 5, 4, 3, 2); | |
int ThermistorPin = 0; | |
int relayPin = 10; | |
int Vo; | |
float R1 = 10000; | |
float logR2, R2, T, Tc; |
OlderNewer