├── .gitignore ├── Adafruit_BME280.py ├── LICENSE ├── README.md ├── delta3.py ├── delta4.py ├── delta4_1281.py ├── deltai.py ├── deltan.py ├── deltan2.py ├── deltan_2182a.py ├── deltan_fail.py ├── devices ├── Adafruit_BME280.py ├── a5310.py ├── b2987a.py ├── c61604.py ├── d1281.py ├── dp160.py ├── f1529.py ├── f1590.py ├── f5700a.py ├── f5720a.py ├── f5720b.py ├── f5790a.py ├── f792a.py ├── f792ab.py ├── f792aw.py ├── f8508a.py ├── g9540.py ├── hp3245a.py ├── hp34401.py ├── hp34420.py ├── hp3458.py ├── hp3458a.py ├── hp3458b.py ├── hp4142b.py ├── hp53131a.py ├── hp6653a.py ├── ilx.py ├── k1801.py ├── k182m.py ├── k2001.py ├── k2002.py ├── k2002b.py ├── k2182.py ├── k2510.py ├── k6221.py ├── k6430.py ├── k6517a.py ├── k708a.py ├── k7168_client.py ├── ks36312a.py ├── lk331.py ├── lk370.py ├── mi6010.py ├── r6581t.py ├── tecpak.py ├── thp_client.py ├── torrey.py └── w4920m.py ├── ircbot └── irc.py ├── main.py ├── main3_dcc.py ├── requirements.txt ├── teckit.conf └── tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/.gitignore -------------------------------------------------------------------------------- /Adafruit_BME280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/Adafruit_BME280.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/README.md -------------------------------------------------------------------------------- /delta3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/delta3.py -------------------------------------------------------------------------------- /delta4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/delta4.py -------------------------------------------------------------------------------- /delta4_1281.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/delta4_1281.py -------------------------------------------------------------------------------- /deltai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/deltai.py -------------------------------------------------------------------------------- /deltan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/deltan.py -------------------------------------------------------------------------------- /deltan2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/deltan2.py -------------------------------------------------------------------------------- /deltan_2182a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/deltan_2182a.py -------------------------------------------------------------------------------- /deltan_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/deltan_fail.py -------------------------------------------------------------------------------- /devices/Adafruit_BME280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/Adafruit_BME280.py -------------------------------------------------------------------------------- /devices/a5310.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/a5310.py -------------------------------------------------------------------------------- /devices/b2987a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/b2987a.py -------------------------------------------------------------------------------- /devices/c61604.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/c61604.py -------------------------------------------------------------------------------- /devices/d1281.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/d1281.py -------------------------------------------------------------------------------- /devices/dp160.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/dp160.py -------------------------------------------------------------------------------- /devices/f1529.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/f1529.py -------------------------------------------------------------------------------- /devices/f1590.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/f1590.py -------------------------------------------------------------------------------- /devices/f5700a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/f5700a.py -------------------------------------------------------------------------------- /devices/f5720a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/f5720a.py -------------------------------------------------------------------------------- /devices/f5720b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/f5720b.py -------------------------------------------------------------------------------- /devices/f5790a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/f5790a.py -------------------------------------------------------------------------------- /devices/f792a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/f792a.py -------------------------------------------------------------------------------- /devices/f792ab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/f792ab.py -------------------------------------------------------------------------------- /devices/f792aw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/f792aw.py -------------------------------------------------------------------------------- /devices/f8508a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/f8508a.py -------------------------------------------------------------------------------- /devices/g9540.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/g9540.py -------------------------------------------------------------------------------- /devices/hp3245a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/hp3245a.py -------------------------------------------------------------------------------- /devices/hp34401.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/hp34401.py -------------------------------------------------------------------------------- /devices/hp34420.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/hp34420.py -------------------------------------------------------------------------------- /devices/hp3458.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/hp3458.py -------------------------------------------------------------------------------- /devices/hp3458a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/hp3458a.py -------------------------------------------------------------------------------- /devices/hp3458b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/hp3458b.py -------------------------------------------------------------------------------- /devices/hp4142b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/hp4142b.py -------------------------------------------------------------------------------- /devices/hp53131a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/hp53131a.py -------------------------------------------------------------------------------- /devices/hp6653a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/hp6653a.py -------------------------------------------------------------------------------- /devices/ilx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/ilx.py -------------------------------------------------------------------------------- /devices/k1801.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k1801.py -------------------------------------------------------------------------------- /devices/k182m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k182m.py -------------------------------------------------------------------------------- /devices/k2001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k2001.py -------------------------------------------------------------------------------- /devices/k2002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k2002.py -------------------------------------------------------------------------------- /devices/k2002b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k2002b.py -------------------------------------------------------------------------------- /devices/k2182.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k2182.py -------------------------------------------------------------------------------- /devices/k2510.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k2510.py -------------------------------------------------------------------------------- /devices/k6221.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k6221.py -------------------------------------------------------------------------------- /devices/k6430.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k6430.py -------------------------------------------------------------------------------- /devices/k6517a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k6517a.py -------------------------------------------------------------------------------- /devices/k708a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k708a.py -------------------------------------------------------------------------------- /devices/k7168_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/k7168_client.py -------------------------------------------------------------------------------- /devices/ks36312a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/ks36312a.py -------------------------------------------------------------------------------- /devices/lk331.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/lk331.py -------------------------------------------------------------------------------- /devices/lk370.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/lk370.py -------------------------------------------------------------------------------- /devices/mi6010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/mi6010.py -------------------------------------------------------------------------------- /devices/r6581t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/r6581t.py -------------------------------------------------------------------------------- /devices/tecpak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/tecpak.py -------------------------------------------------------------------------------- /devices/thp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/thp_client.py -------------------------------------------------------------------------------- /devices/torrey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/torrey.py -------------------------------------------------------------------------------- /devices/w4920m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/devices/w4920m.py -------------------------------------------------------------------------------- /ircbot/irc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/ircbot/irc.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/main.py -------------------------------------------------------------------------------- /main3_dcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/main3_dcc.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/requirements.txt -------------------------------------------------------------------------------- /teckit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/teckit.conf -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin-/teckit/HEAD/tools.py --------------------------------------------------------------------------------