Search found 35 matches
- Sat Sep 11, 2021 4:49 am
- Forum: ESP32 Arduino
- Topic: Webserver running on Core0 issues
- Replies: 16
- Views: 25263
Re: Webserver running on Core0 issues
Thank you for the suggestion. I had moved the project on by using a separate inexpensive pic for the zerocrossing/mains and just send commands to it from the esp32. It did have some benefits like if the esp ever had a lockup the pic could timeout and safely handle things. However, now that some of t...
- Thu Feb 27, 2020 5:44 pm
- Forum: ESP32 Arduino
- Topic: Best way to get latest updates
- Replies: 1
- Views: 4618
Best way to get latest updates
I'm a bit confused on the best way to stay up to date. The instructions show to use the .json paths in arduino: Stable release link: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json Development release link: https://raw.githubusercontent.com/espressif/ardui...
- Thu Feb 27, 2020 4:06 pm
- Forum: ESP32 Arduino
- Topic: https long timeout tracked down to ssl_client.cpp and lwip
- Replies: 2
- Views: 5230
Re: https long timeout tracked down to ssl_client.cpp and lwip
Thanks for the reply and unfortunately I figured this was going to be the case. I have a different file that I read from the server using regular http so I suppose I could always read first and if it is successful then switch to https for the post. I don't think there is anything critical about the ...
- Thu Feb 27, 2020 3:40 am
- Forum: ESP32 Arduino
- Topic: https long timeout tracked down to ssl_client.cpp and lwip
- Replies: 2
- Views: 5230
https long timeout tracked down to ssl_client.cpp and lwip
I am trying to post to a https page. Everything works but if you have a scenario where the unit cannot reach the page there is a long 18 second timeout. The timeout command do not affect this. If you change the url to http instead it works and fails immediately and continues. This only seems to affe...
- Wed Aug 28, 2019 5:22 am
- Forum: ESP32 Arduino
- Topic: Question on security of .bin file
- Replies: 9
- Views: 10188
Re: Question on security of .bin file
Those are just an example. The app also does a ftp of data to a site so it needs the site credentials as well.
- Tue Aug 27, 2019 8:41 pm
- Forum: ESP32 Arduino
- Topic: Question on security of .bin file
- Replies: 9
- Views: 10188
Re: Question on security of .bin file
That is actually what I was just working on. :^) I would just use ssid and passwords that were scrambled letters and have my array out of sequence too. Kind of the long way around the issue.
- Tue Aug 27, 2019 7:35 pm
- Forum: ESP32 Arduino
- Topic: Question on security of .bin file
- Replies: 9
- Views: 10188
Re: Question on security of .bin file
Looks like I was wrong the char array. It doesn't show up in the .bin initially but if you do something with it then the value shows as plain text as well.
- Tue Aug 27, 2019 1:01 pm
- Forum: ESP32 Arduino
- Topic: Question on security of .bin file
- Replies: 9
- Views: 10188
Re: Question on security of .bin file
Every home has a lock set. However, you do have people that can pick the lock, use bump keys, or simply kick the door in. Yet we use a cheap lock set because it provides good enough security. I understand there will always be a way someone can find a way in but I just don't want to leave the door wi...
- Tue Aug 27, 2019 4:06 am
- Forum: ESP32 Arduino
- Topic: Question on security of .bin file
- Replies: 9
- Views: 10188
Re: Question on security of .bin file
I was probably not as clear as I needed to be. My project has things such as default wifi passwords, ftp site passwords and such. Things that I want to keep hidden but when I open the .bin file in notepad I am able to see these among the text at the top of the file. One thing that I noticed is it se...
- Mon Aug 26, 2019 7:43 pm
- Forum: ESP32 Arduino
- Topic: Question on security of .bin file
- Replies: 9
- Views: 10188
Question on security of .bin file
I happen to look at the .bin file created by arduino and noticed that there were several things that show up as plain text in it. I have variables that contain default passwords and such that I prefer not to be openly viewable. In my project I use OTA so I need the bin files for that process. Is the...