I have FEM and Enocean Pi up and running. I installed the reed sensor above the door so when the door is opened a telegram will be sent to FHEM.
I have a small monitor to display the sketch. I am going to mount it above the counter using Velcro. This will prevent the monitor and Raspberry Pi from being pushed to the floor .
Below is a simple test of a processing sketch.
I will be testing a python script to-morrow to trigger the script from the Raspberry Pi with Enocean Pi installed when a door is opened to connecting to the Raspberry Pi 3+. To use a remote script I will be including the following code:
import subprocess
subprocess.open("ssh pi@<static ip> 'cd ~ && python your_script.py'", shell=True)


Top Comments