Do you want to transform your cheap esp32-cam in a DIY surveillance camera with moton detection AND photo capture?
Look no further: this post explains STEP-BY-STEP all you need to know to build one yourself!
Do you want to transform your cheap esp32-cam in a DIY surveillance camera with moton detection AND photo capture?
Look no further: this post explains STEP-BY-STEP all you need to know to build one yourself!
This will be a short post where I introduce a new addition to the Arduino Eloquent library aimed to make video streaming from an ESP32 camera over HTTP super easy. It will be the first component of a larger project I'm going to implement.
Ever wanted to use your thermal camera with Arduino but found it difficult to go beyond the tutorials code? Let's see the easiest possible way to view your thermal camera streaming without an LCD display!
Pin
is a class for pin manipulation: you can read, write, turnOn, turnOff, toggle and a lot more. Please, stop writing horrible code like digitalWrite(led, HIGH)
and start writing led.turnOn()
instead.
Sometimes you may need to wait for a certain condition to become true, but you don't want to wait forever: it may be awaiting for Serial, for the Wifi to connect to a network, or the response from a SoftwareSerial peripheral. The await
construct lets you put an upper bound to the time you're willing to wait.
The every
construct lets you run a piace of code at regular intervals in a fluent way. If you don't need to start, stop, pause your timer, this construct is a valid alternative to more complex timer libraries already available: it only takes a time interval as argument and will execute the code block periodically.
In this short tutorial I'll show you how you can install the Eloquent library to take advange of all the good things it provides to you.
It really is super simple, since the Eloquent library is no different from any other library you already installed on your computer, but I'll repeat the steps for clarity.
Eloquent Arduino is an attempt to bring sanity and clarity in Arduino projects. The purpose of this library is to create a wide range of constructs to clearly translate your ideas into meaningful code: stop writing spaghetti code only you can undestand, please! I'll show you how.
© 2021 Eloquent Arduino Blog
Theme by Anders Norén — Up ↑