start new:
tmux
start new with session name:
tmux new -s myname
/* | |
Demonstration sketch for DS18B20 temperature sensors using the DallasTemperature library. | |
Reads temperature (Celsius) and temperature (Fahrenheit). Displays results to I2C LCD. | |
*/ | |
#include <LCD.h> // I2C LCD | |
#include <Wire.h> // I2C | |
#include <OneWire.h> // One-wire devices | |
#include <DallasTemperature.h> // DS18B20 |
HANDY ONE-LINE SCRIPTS FOR AWK 30 April 2008 | |
Compiled by Eric Pement - eric [at] pement.org version 0.27 | |
Latest version of this file (in English) is usually at: | |
http://www.pement.org/awk/awk1line.txt | |
This file will also be available in other languages: | |
Chinese - http://ximix.org/translation/awk1line_zh-CN.txt | |
USAGE: |
# download latest libevent2 and tmux sources, and extract them somewhere | |
# (thx bluejedi for tip on latest tmux URL) | |
# | |
# at the time of writing: | |
# https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz | |
# http://sourceforge.net/projects/tmux/files/latest/download?source=files | |
# | |
# install deps | |
yum install gcc kernel-devel make ncurses-devel |