Pieter P
Pieter P
I haven't written any guides for this, but I'll quickly share some guidelines: To connect multiple ATmega328Ps to one central microcontroller, you can use I²C. You should give each ’328P...
No problem, I appreciate you sharing your findings! :)
This is an issue tracker for the Beginner's Guide to the ESP8266. Please use the appropriate online fora if you have questions about your specific project. I haven't used the...
I don't have much time on my hands right now, and my JavaScript is quite rough, so I can't really help you. I think the Google Chart documentation is a...
Glad to hear! It might be useful to others if you could post your solution.
Hi Eggs2017, Thank you for your contributions! I'm studying for my exams right now, so I don't have time to review the commits you made, but I'll definitely check them...
There is nothing inherently unsafe about encoding the credentials in the URI of an HTTP GET request. The format in the body of a POST request would be exactly the...
GET is used to retrieve data from the server, POST is used to submit data to the server. There are some major differences, such as idempotence, safety (of the method,...
If the email notifier used HTTP, then anyone that happened to be on a network that your packet was sent over could read your email address and password. It doesn't...
Yes, I was talking about a man in the middle attack. The encryption is handled by other libraries in the ESP core. The Arduino core for ESP8266 is open-source, so...