38-3D Blog

  • Detecting Objects with the ESP32-CAM and Python

    The ESP32-CAM is a versatile, low-cost microcontroller with a built-in camera, capable of capturing images and streaming video. When combined with Python’s powerful image processing libraries, you can implement object...

  • Using a 0.96" OLED with the Arduino

    The 0.96" OLED display is a compact, energy-efficient screen that is perfect for displaying text, graphics, and sensor data in Arduino projects. This tutorial will guide you through setting up...

  • Measuring Current with the Arduino

    Measuring current in electronic circuits is a common requirement for projects involving sensors, motors, LEDs, and other components. While Arduino cannot directly measure current, you can use external components like...

  • Arduino Interrupts Tutorial

    Interrupts are a powerful feature of microcontrollers that allow you to handle events asynchronously. Unlike polling, which continuously checks for events, interrupts respond immediately when a specific event occurs, such...

  • Arduino Timer Tutorial

    Timers are an essential feature of microcontrollers, allowing you to perform tasks at precise intervals without relying on delays. The Arduino Uno has three built-in hardware timers (Timer0, Timer1, and...

  • How to Use a Push Button Switch with the Arduino

    Push button switches are commonly used in electronics to control devices or trigger specific actions. With an Arduino, you can easily read the state of a push button and use...

  • Detecting Objects with the ESP32-CAM

    The ESP32-CAM is a powerful, low-cost microcontroller with a built-in camera module, capable of capturing images and streaming live video. By leveraging its processing capabilities and integrating external machine learning...

  • Creating a Camera Server with the ESP32-CAM

    The ESP32-CAM is a low-cost microcontroller with a built-in camera module, capable of capturing images and streaming live video. By setting it up as a camera server, you can access...

  • Analog Read and Write Using the Arduino Uno

    The Arduino Uno supports analog input and output operations, enabling you to interact with sensors and actuators requiring precise values. Analog operations are essential for controlling devices like LEDs, motors,...