Skip to content

An Activity Watch watcher which monitors whether you have set your height-adjustable table to sitting or standing.

Notifications You must be signed in to change notification settings

kulbhushanchand/aw-watcher-table

 
 

Repository files navigation

aw-watcher-table

An Activity Watch watcher which monitors whether you have set your height-adjustable table to sitting or standing.

1

Idea

Unfortunately my adjustable table doesn't have an API or anything similar. Therefore I need an external device which measures the height of the table. This external device must have internet access and a distance sensor.

Implementation

Hardware

Electronics

I have used an ESP8266 micro controller. It has in-built Wifi and GPIOs to control sensors. As a distance sensor I have used an HC-SR04 Ultrasonic Sensor, because I had it lying around.

Case

I printed my case using the Prusa I3 MK3. As modeling software I used Fusion360. You can download the 3D model here (Thingiverse).

0

Price

Name Price
ESP8266 6.50€
HC-SR04 5.16€
3D Printed Case ~0.25€
Total 11.91€

Definitely affordable.

Test

When the hardware is finished and powered on, it should be possible to get the table height via the curl command:

# curl http://192.168.2.4/measure
{"table_height":128}

Software

Install

virtualenv venv # create virtual environment
venv\Scripts\activate # activate virtual environment
poetry install # install required packages

Run

poetry run aw-watcher-table [--testing] [-v] [--verbose]

Build

Windows

pyinstaller --clean aw_windows.spec

Linux

pyinstaller --clean aw_linux.spec

Test

  1. Move the aw-watcher-table folder inside the dist folder into the Activity Watch installation location
  2. Restart Activity Watch
  3. Right click the Activity Watch tray icon. Under modules you should see the aw-table-watcher. Check it to start the aw-watcher-table.

2

Deploy

  1. Go to the config directory. You can find the path for your OS here.
  2. In the aw-qt directory you should find a aw-qt.ini file.
  3. Add the aw-table-watcher to autostart_modules to enable auto-start. It should look like this:
[aw-qt]
autostart_modules = ["aw-server", "aw-watcher-afk", "aw-watcher-window", "aw-table-watcher"]

[aw-qt-testing]
autostart_modules = ["aw-server", "aw-watcher-afk", "aw-watcher-window", "aw-table-watcher"]

About

An Activity Watch watcher which monitors whether you have set your height-adjustable table to sitting or standing.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 70.3%
  • C++ 29.7%