Search found 9 matches
- Sunday 12 June 2022 21:08
- Forum: LUA
- Topic: Telegram snapshots
- Replies: 28
- Views: 5886
Re: Telegram snapshots
Thanks, but today I also noted a significant delay in triggering the actual chime (a command from domoticz to trigger an event on a espeasy device), and I can't have that with a doorbell. So in my configuration reliability is an issue, somehow. Could be domoticz has a lot of other things to do ...
- Monday 23 May 2022 17:18
- Forum: LUA
- Topic: Telegram snapshots
- Replies: 28
- Views: 5886
Re: Telegram snapshots
Trial and error led me to another script that works most of the time (for me anyway) with the doorbell unit on a tasmota ESP32 cam firmware. Most of the time meaning that sometimes still the second last snapshot is being send to telegram.... Could be a timing issue with Domoticz or the raspberry pi ...
- Monday 16 May 2022 19:24
- Forum: LUA
- Topic: Telegram snapshots
- Replies: 28
- Views: 5886
Re: Telegram snapshots
Thanks. I had more or less abandoned the project, but I'm now picking it up again because I can't stand it when things don't do what I want them to do. :D I'm pretty sure I don't have an issue with the espeasy side. And indeed, I had placed the espeasy command in the script: os.execute('curl -s -X ...
- Saturday 07 May 2022 16:08
- Forum: LUA
- Topic: Telegram snapshots
- Replies: 28
- Views: 5886
Re: Telegram snapshots
Thanks, but today I also noted a significant delay in triggering the actual chime (a command from domoticz to trigger an event on a espeasy device), and I can't have that with a doorbell. So in my configuration reliability is an issue, somehow. Could be domoticz has a lot of other things to do ...
- Friday 06 May 2022 19:27
- Forum: LUA
- Topic: Telegram snapshots
- Replies: 28
- Views: 5886
Re: Telegram snapshots
Makes sense to me! Maybe there should be a little pause inserted after the command to get an image.
Anyway, found no snapshot anywhere in /home/pi/domoticz/scripts/, so that should be good.
Anyway, found no snapshot anywhere in /home/pi/domoticz/scripts/, so that should be good.
- Friday 06 May 2022 16:25
- Forum: LUA
- Topic: Telegram snapshots
- Replies: 28
- Views: 5886
Re: Telegram snapshots
I'm running quite the same script: return { on = { devices = {'doorbell'}, -- switch (pushbutton) device in domoticz }, execute = function(domoticz, device) local Cam = domoticz.devices("doorbell") -- Actief if(device.state == 'On') then local teleTok = xxxxxxxxxxxxxxxxxxxxxxxxxxxxx' local chatId ...
- Monday 02 May 2022 11:25
- Forum: Cameras
- Topic: ESP32-CAM as doorbell with camera
- Replies: 277
- Views: 71766
Re: ESP32-CAM as doorbell with camera
hmm, I can't seem to figure out at which hex addresses the bin files should be placed. :?: Tried 0x10000 for firmware.bin and 0x4000 and 0x25000 for spiffs.bin, but that does not work. I'm using the esp32 download tool from espressif. Can I find the addresses somewhere? Update: finally managed to ...
- Monday 02 May 2022 8:36
- Forum: Cameras
- Topic: ESP32-CAM as doorbell with camera
- Replies: 277
- Views: 71766
Re: ESP32-CAM as doorbell with camera
Oeps, my bad.hoeby wrote: ↑Monday 02 May 2022 8:19 There are image files on github
https://github.com/Hoeby/ESP32-Doorbel ... tag/V2.0.0

- Monday 02 May 2022 7:44
- Forum: Cameras
- Topic: ESP32-CAM as doorbell with camera
- Replies: 277
- Views: 71766
Re: ESP32-CAM as doorbell with camera
Great project! But a question. I've got the V1 working, but really want the v2 version on the esp32cam. I know my way around the arduino IDE, but Platformio is relatively new to me and keeps throwing an error when I try to compile: collect2.exe: error: ld returned 1 exit status *** [.pio\build\ESP ...