Menu
Your Cart

Nerokas Blog

06 Sep TTGO T-Journal ESP32 Camera: Built-in Programmer, OLED, Antenna and Project Examples
0 131
This is a getting started guide for the TTGO T-Journal ESP32 Camera Development Board. The TTGO T-Journal features an OV2640 camera, an OLED display, several GPIOs to connect peripherals and a built-in programmer, which makes it easy to upload code. We’ll take a quick look at the camera dev board and learn how to program it using Arduino IDE.Introd..
05 Sep ESP32 with DC Motor and L298N Motor Driver – Control Speed and Direction
0 482
This tutorial shows how to control the direction and speed of a DC motor using an ESP32 and the L298N Motor Driver. First, we’ll take a quick look at how the L298N motor driver works. Then, we’ll show you an example of how to control the speed and direction of a DC motor with the L298N motor driver using the ESP32 programmed with Arduino IDE.Update..
05 Sep Installing the ESP32 Board in Arduino IDE (Windows, Mac OS X, Linux)
0 325
There’s an add-on for the Arduino IDE that allows you to program the ESP32 using the Arduino IDE and its programming language. In this tutorial we’ll show you how to install the ESP32 board in Arduino IDE whether you’re using Windows, Mac OS X or Linux.Using Arduino 2.0? Follow this tutorial instead: Installing ESP32 Board in Arduino IDE 2.0Watch t..
05 Sep Installing the ESP32 Board in Arduino IDE (Mac OS X and Linux instructions)
0 251
There’s an add-on for the Arduino IDE that allows you to program the ESP32 using the Arduino IDE and its programming language. In this tutorial we’ll show you how to install the ESP32 board in the Arduino IDE on Mac OS X or Linux. If you’re using a Windows PC follow these instructions instead. Watch the Video TutorialThis tutorial is available in v..
05 Sep Getting Started with the ESP32 Development Board
0 457
New to ESP32? Start here! The ESP32 is a series of low-cost and low-power System on a Chip (SoC) microcontrollers developed by Espressif that include Wi-Fi and Bluetooth wireless capabilities and dual-core processor. If you’re familiar with the ESP8266, the ESP32 is its successor, loaded with lots of new features.Updated 5 August 2024New to the ESP..
05 Sep ESP32 ADC – Read Analog Values with Arduino IDE
0 483
This article shows how to read analog inputs with the ESP32 using Arduino IDE. Analog reading is useful to read values from variable resistors like potentiometers, or analog sensors.Reading analog inputs with the ESP32 is as easy as using the analogRead(GPIO) function, that accepts as argument, the GPIO you want to read.We also have other tutorials..
05 Sep ESP32 SPI Communication: Set Pins, Multiple SPI Bus Interfaces, and Peripherals (Arduino IDE)
0 1075
This is a simple guide about SPI communication protocol with the ESP32 using Arduino IDE. We’ll take a look at the ESP32 SPI pins, how to connect SPI devices, define custom SPI pins, how to use multiple SPI devices, and much more.Table of Contents:Introducing ESP32 SPI Communication ProtocolESP32 SPI PeripheralsESP32 SPI PinsUsing Custom ESP32 SPI ..
05 Sep ESP32 I2C Communication: Set Pins, Multiple Bus Interfaces and Peripherals (Arduino IDE)
0 727
The ESP32 has two I2C bus interfaces that can serve as I2C master or slave. In this tutorial we’ll take a look at the I2C communication protocol with the ESP32 using Arduino IDE: how to choose I2C pins, connect multiple I2C devices to the same bus and how to use the two I2C bus interfaces.In this tutorial, we’ll cover the following concepts:Connect..
05 Sep ESP32 PWM with Arduino IDE (Analog Output)
0 814
Learn to generate PWM signals with the ESP32 using Arduino IDE. We’ll explain two different methods: using analogWrite and using the LEDC API. As an example, we’ll build a simple circuit to fade an LED.Updated 11 June 2024Before proceeding with this tutorial you should have the ESP32 add-on installed in your Arduino IDE. Follow the next tutorial to..
05 Sep ESP32 Touch Wake Up from Deep Sleep
0 232
This guide shows how to wake up the ESP32 from deep sleep using the touch sensitive pins. The ESP32 will be programmed using Arduino IDE.The ESP32 can be awake from deep sleep using several wake up sources: timer, external wake up and touch wake up. This article shows how to use touch wake up.To learn more about deep sleep and other wake up sources..
05 Sep ESP32 Capacitive Touch Sensor Pins with Arduino IDE
0 93
his article shows how to use the ESP32 touch pins with Arduino IDE. The ESP32 touch pins can sense variations in anything that holds an electrical charge. They are often used to wake up the ESP32 from deep sleep.To read the value of the ESP32 touch pins, use the touchRead(GPIO) function, that accepts as argument, the GPIO you want to read.Watch the..
05 Sep ESP8266 ADC – Read Analog Values with Arduino IDE, MicroPython and Lua
0 147
Both ESP8266-12E and ESP8266-07 have one ADC pin that is easily accessible. This means that those ESP8266 boards can read analog signals. In this tutorial we’ll show you how to use analog reading with the ESP8266 using Arduino IDE, MicroPython or Lua firmware.As an example, we’ll show you how to read analog values from a potentiometer. This post is..
05 Sep ESP32/ESP8266 Analog Readings with MicroPython
0 94
This tutorial shows how to read analog values with the ESP32 and ESP8266 boards using MicroPython firmware. As an example, we’ll read the values from a potentiometer.Getting analog readings with ESP32 and ESP8266 is a bit different, so there is a section for each board in this tutorial.PrerequisitesTo follow this tutorial you need MicroPython firmw..
05 Sep ESP32 External Wake Up from Deep Sleep
0 159
This article shows how to put the ESP32 in deep sleep mode and wake it with an external wake up, like a button press. We’ll use Arduino IDE to program the ESP32 and cover how to use ext0 and ext1 methods.Throughout this article we’ll cover the following subjects:how to put the ESP32 in deep sleep mode;wake up the ESP32 by changing the value of one ..
05 Sep ESP32 Deep Sleep with Arduino IDE and Wake Up Sources
0 498
This article is a complete guide for the ESP32 Deep Sleep mode with Arduino IDE. We’ll show you how to put the ESP32 into deep sleep and take a look at different modes to wake it up: timer wake up, touch wake up, and external wake up. This guide provides practical examples with code, code explanation, and schematics.Related Content: ESP8266 Deep Sl..
05 Sep ESP32 Web Server – Arduino IDE
0 382
ESP32 Web Server – Arduino IDEIn this project you’ll create a standalone web server with an ESP32 that controls outputs (two LEDs) using the Arduino IDE programming environment. The web server is mobile responsive and can be accessed with any device that as a browser on the local network. We’ll show you how to create the web server and how the code..
04 Sep How to Set an ESP32 Access Point (AP) for Web Server
0 96
How to Set an ESP32 Access Point (AP) for Web ServerThe ESP32 can act as a Wi-Fi station, as an access point, or both. In this tutorial we’ll show you how to set the ESP32 as an access point using Arduino IDE.In most projects with the ESP32, we connect the ESP32 to a wireless router (see our ESP32 web server tutorial). This way we can access the ES..
04 Sep ESP32-CAM Connect External Antenna (Extend Wi-Fi Coverage)
0 269
ESP32-CAM Connect External Antenna (Extend Wi-Fi Coverage)The ESP32-CAM comes with an on-board Wi-Fi antenna, but it also has an IPEX connector if you want to use an external antenna. Using an external antenna can solve problems related with slow video streaming web servers and other connectivity problems. This tutorial shows how to use an external..
04 Sep How to Program / Upload Code to ESP32-CAM AI-Thinker (Arduino IDE)
0 278
The ESP32-CAM AI-Thinker development board can be programmed using Arduino IDE. This guide shows how to program and upload code to the ESP32-CAM (AI-Thinker) development board using Arduino IDE.The ESP32-CAM AI-Thinker module is an ESP32 development board with an OV2640 camera, microSD card support, on-board flash lamp and several GPIOs to connect ..
04 Sep ESP32 Pinout Reference: Which GPIO pins should you use?
0 409
ESP32 Pinout Reference: Which GPIO pins should you use?The ESP32 chip comes with 48 pins with multiple functions. Not all pins are exposed in all ESP32 development boards, and some pins cannot be used.There are many questions on how to use the ESP32 GPIOs. What pins should you use? What pins should you avoid using in your projects? This post aims t..
Showing 21 to 40 of 74 (4 Pages)
The product is currently Out-of-Stock. Please enter your details below and we will notify you as soon as the product is available.
Name
Email
Phone
Comments