Using lambda functions for ESP32 WiFi events handling
ESP32 Arduino cpplinq: the average operator
Using the cpplinq average operator on the ESP32, with the Arduino core.
ESP32 Arduino: Filtering arrays with cpplinq
How to filter an array of integers with cpplinq, using the ESP32 and the Arduino core.
ESP32 Arduino: Getting started with the cpplinq library
Tutorial on how to use the cpplinq on the ESP32.
ESP32 / ESP8266 MicroPython: Applying filter function to lists
The objective of this post is to explain how to use the filter function with lists in MicroPython. This tutorial was tested both on the ESP32 and on the ESP8266. The tests on the ESP32 were performed using a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board. Introduction The objective of this post is to explain how to use …
Continue reading "ESP32 / ESP8266 MicroPython: Applying filter function to lists"
ESP32 / ESP8266 MicroPython: Lambda functions
Introduction The objective of this post is to explain how to use lambda functions in MicroPython and their difference regarding regular functions. Lambdas are a concept supported in many other programming languages, such as JavaScript and C#, and in a more formal definition they correspond to anonymous functions. So, in MicroPython, this means that we …
Continue reading "ESP32 / ESP8266 MicroPython: Lambda functions"