in reply to using Skype

To me, this sounds like a job for an IOT type motion sensor, and back-end logic to alert you under selected conditions.

That would be less obtrusive than a webcam, and less annoying than robo calls.

Of course, it requires access to (very) low bandwidth Internet access.

        ...Disinformation is not as good as datinformation.               Don't document the program; program the document.

Replies are listed 'Best First'.
Re^2: using Skype
by stevieb (Canon) on Apr 29, 2017 at 21:23 UTC

    This would be trivial to do with the Raspberry Pi and Perl. Most motion sensors are single-wire (well, V+, V- and feed), so just a single GPIO pin. Here's a quick example with a mix of real and pseudo:

    use warnings; use strict; use RPi::WiringPi; my $pi = RPi::WiringPi->new; my $pin = $pi->pin(27); # GPIO pin 27 my $count; while (1){ # check if time >= 0900 here # ...if not, sleep and next my $motion = 0; for (0..10){ if ($pin->read == 1){ $motion = 1; last; } sleep 5; } $count++ if ! $motion; if ($count >= 3){ # 0915 hrs and no movement # send email, sound an alarm etc ... } sleep 300; }
Re^2: using Skype
by huck (Prior) on Apr 29, 2017 at 21:52 UTC

    If i were going in this direction id give her an actual button, im thinking of something like a big staples-easy button. Maybe with an led to remind her it is check in time. A positive action rather than a lack of action.