-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add wifi manager #23
Comments
good idea - ill have a look |
Thank you for your prompt response, I think you do a very good job. Thank
you
El lun, 22 ago 2022 a las 12:06, jameszah ***@***.***>)
escribió:
… good idea - ill have a look
—
Reply to this email directly, view it on GitHub
<#23 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHGN4PDQDFSNOSZ6WEDJZGTV2OJQFANCNFSM56T6BD2A>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
+1 for wifimanager! I've looked at your other projects that use wifimanager lib by tablatronix but was unable to get my sketch to work without inadvertently break something. |
check the new version! |
Testing, thank you so much! Useful to open Telegram and look for the bot's ID and Token before connecting to the deskpir AP, in order to have access to these keys while already in the wifimanager homepage. Regarding timed photos, the following worked for me: power on; define photo every 3 minutes by entering /3; entering /entim. A photo is taken 3 minutes after this input, then after a 3min interval, etc. I will try leaving it running for some days to keep testing, thank you! |
I think it just keeps track of the last photo, and adds interval to do another one ... so you will often get a photo immediately if it has been shut off. |
excellent work sir jameszah! |
I left it working for 48hours and overnight my router rebooted for some unrelated reason (maybe maintenance by my ISP). Looking at the code, once the bot looked for a new message and realized there was no connection, it called
I think it would be useful to make the ESP deepsleep for some minutes, then try again. Example: I am away from home during the week, there is no one there to login to the portal and reconnect; having the ESP deepsleep and try again later would at least give it a chance to go back online in case of router reboot or internet failure. This is working for me:
|
ESP32-CAM-Video-Telegram/v9.5/ESP32-CAM-Video-Telegram_9.5/ESP32-CAM-Video-Telegram_9.5.ino Line 1297 in c578453
You could just change this to 5-8 minutes. |
You are right, increasing to a few minutes is much more straightforward, thank you. |
regarding the deepsleep stuff - after deepsleep the esp32 reboots, and you lose context ... unless you save it in nonvolatile memory ... so just delaying for a minute, then retrying, and repeat would be simpler. You are not that focused on saving battery during that phase. |
hello , can someone give me a hand with this please , i have erased the board before loading the software and try with a new board and the same error appears . Thank you rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
|
ESP32-CAM-Video-Telegram/v9.5/ESP32-CAM-Video-Telegram_9.5/ESP32-CAM-Video-Telegram_9.5.ino Line 1376 in 7b492cc
The camera init is failing because there is not enough psram (150kb framrebuffer). The line above allocates as much as possible psram to record the video. You need more psram for hd than for vga. (900 vs 500) You could bump that up to 1000 or 1200. I put a few versions in last night for hd and vga. Are you compiling it, or using the precompiled version? If you are compiling, you need to use the current compiler and arduino framework which will use different amounts of ram and psram. Also it assumes the ai-thinker 4mb psram. |
Thank you for your prompt response sir, that's right, the problem was there, put 1000 instead of 500 and it worked correctly. I think it's a cool project. thanks for sharing. Compile with the ide, although the automatic compilation works fine too |
Hello sir, for my work I travel a lot, this project fascinates me. It would be too much to ask that you add wifimanager to be able to modify network and token. I admire your work and thank you very much
The text was updated successfully, but these errors were encountered: