Search results for "arduino OR nano OR esp32 OR with OR headers"
-
Arduino Arduino Nano 33 BLE Rev2 (with Headers)
The Arduino Nano 33 BLE Rev2 stands at the forefront of innovation, leveraging the advanced capabilities of the nRF52840 microcontroller. This 32-bit Arm Cortex-M4 CPU, operating at an impressive 64 MHz, empowers developers for a wide range of projects. The added compatibility with MicroPython enhances the board's flexibility, making it accessible to a broader community of developers. The standout feature of this development board is its Bluetooth Low Energy (Bluetooth LE) capability, enabling effortless communication with other Bluetooth LE-enabled devices. This opens up a realm of possibilities for creators, allowing them to seamlessly share data and integrate their projects with a wide array of connected technologies. Designed with versatility in mind, the Nano 33 BLE Rev2 is equipped with a built-in 9-axis Inertial Measurement Unit (IMU). This IMU is a game-changer, offering precise measurements of position, direction, and acceleration. Whether you're developing wearables or devices that demand real-time motion tracking, the onboard IMU ensures unparalleled accuracy and reliability. In essence, the Nano 33 BLE Rev2 strikes the perfect balance between size and features, making it the ultimate choice for crafting wearable devices seamlessly connected to your smartphone. Whether you're a seasoned developer or a hobbyist embarking on a new adventure in connected technology, this development board opens up a world of possibilities for innovation and creativity. Elevate your projects with the power and flexibility of the Nano 33 BLE Rev2. Specifications Microcontroller nRF52840 USB connector Micro USB Pins Built-in LED Pins 13 Digital I/O Pins 14 Analog Input Pins 8 PWM Pins All digital pins (4 at once) External interrupts All digital pins Connectivity Bluetooth u-blox NINA-B306 Sensors IMU BMI270 (3-axis accelerometer + 3-axis gyroscope) + BMM150 (3-axis Magnetometer) Communication UART RX/TX I²C A4 (SDA), A5 (SCL) SPI D11 (COPI), D12 (CIPO), D13 (SCK). Use any GPIO for Chip Select (CS) Power I/O Voltage 3.3 V Input Voltage (nominal) 5-18 V DC Current per I/O Pin 10 mA Clock Speed Processor nRF52840 64 MHz Memory nRF52840 256 KB SRAM, 1 MB flash Dimensions 18 x 45 mm Downloads Datasheet Schematics
€ 29,95€ 14,95
Members identical
-
Arduino Arduino Nano
The Arduino Nano is a small, complete, and breadboard-friendly board based on the ATmega328 (Arduino Nano 3.x). It has more or less the same functionality of the Arduino Duemilanove but in a different package. It lacks only a DC power jack and works with a Mini-B USB cable instead of a standard one. Specifications Microcontroller ATmega328 Operating Voltage (logic level) 5 V Input Voltage (recommended) 7-12 V Input Voltage (limits) 6-20 V Digital I/O Pins 14 (of which 6 provide PWM output) Analog Input Pins 8 DC Current per I/O Pin 40 mA Flash Memory 16 KB (ATmega168) or 32 KB (ATmega328) of which 2 KB used by bootloader SRAM 1 KB (ATmega168) or 2 KB (ATmega328) EEPROM 512 bytes (ATmega168) or 1 KB (ATmega328) Clock Speed 16 MHz Dimensions 0.73 x 1.70' (18 x 45 mm) Power The Arduino Nano can be powered via the Mini-B USB connection, 6-20 V unregulated external power supply (pin 30), or 5 V regulated external power supply (pin 27). The power source is automatically selected to the highest voltage source. Memory The ATmega168 has 16 KB of flash memory for storing code (of which 2 KB is used for the bootloader), 1 KB of SRAM and 512 bytes of EEPROM The ATmega328 has 32 KB of flash memory for storing code, (also with 2 KB used for the bootloader), 2 KB of SRAM and 1 KB of EEPROM. Input and Output Each of the 14 digital pins on the Nano can be used as an input or output, using pinMode(), digitalWrite(), and digitalRead() functions. They operate at 5 V. Each pin can provide or receive a maximum of 40 mA and has an internal pull-up resistor (disconnected by default) of 20-50 kOhms. Communication The Arduino Nano has a number of facilities for communicating with a computer, another Arduino, or other microcontrollers. The ATmega168 and ATmega328 provide UART TTL (5V) serial communication, which is available on digital pins 0 (RX) and 1 (TX). An FTDI FT232RL on the board channels this serial communication over USB and the FTDI drivers (included with the Arduino software) provide a virtual com port to software on the computer. The Arduino software includes a serial monitor which allows simple textual data to be sent to and from the Arduino board. The RX and TX LEDs on the board will flash when data is being transmitted via the FTDI chip and USB connection to the computer (but not for serial communication on pins 0 and 1). A SoftwareSerial library allows for serial communication on any of the Nano's digital pins. Programming The Arduino Nano can be programmed with the Arduino software (download). The ATmega168 or ATmega328 on the Arduino Nano comes with a bootloader that allows you to upload new code to it without the use of an external hardware programmer. It communicates using the original STK500 protocol (reference, C header files). You can also bypass the bootloader and program the microcontroller through the ICSP (In-Circuit Serial Programming) header using Arduino ISP or similar; see these instructions for details. Automatic (Software) Reset Rather than requiring a physical press of the reset button before an upload, the Arduino Nano is designed in a way that allows it to be reset by software running on a connected computer. One of the hardware flow control lines (DTR) of theFT232RL is connected to the reset line of the ATmega168 or ATmega328 via a 100 nF capacitor. When this line is asserted (taken low), the reset line drops long enough to reset the chip. The Arduino software uses this capability to allow you to upload code by simply pressing the upload button in the Arduino environment. This means that the bootloader can have a shorter timeout, as the lowering of DTR can be well-coordinated with the start of the upload.
€ 22,95
Members € 20,66
-
Elektor Digital FreeRTOS for ESP32-Arduino (E-book)
Practical Multitasking Fundamentals Programming embedded systems is difficult because of resource constraints and limited debugging facilities. Why develop your own Real-Time Operating System (RTOS) as well as your application when the proven FreeRTOS software is freely available? Why not start with a validated foundation? Every software developer knows that you must divide a difficult problem into smaller ones to conquer it. Using separate preemptive tasks and FreeRTOS communication mechanisms, a clean separation of functions is achieved within the entire application. This results in safe and maintainable designs. Practicing engineers and students alike can use this book and the ESP32 Arduino environment to wade into FreeRTOS concepts at a comfortable pace. The well-organized text enables you to master each concept before starting the next chapter. Practical breadboard experiments and schematics are included to bring the lessons home. Experience is the best teacher. Each chapter includes exercises to test your knowledge. The coverage of the FreeRTOS Application Programming Interface (API) is complete for the ESP32 Arduino environment. You can apply what you learn to other FreeRTOS environments, including Espressif’s ESP-IDF. The source code is available from GitHub. All of these resources put you in the driver’s seat when it is time to develop your next uber-cool ESP32 project. What you will learn: How preemptive scheduling works within FreeRTOS The Arduino startup “loopTask” Message queues FreeRTOS timers and the IDLE task The semaphore, mutex, and their differences The mailbox and its application Real-time task priorities and its effect Interrupt interaction and use with FreeRTOS Queue sets Notifying tasks with events Event groups Critical sections Task local storage The gatekeeper task
€ 34,95
Members € 27,96
-
Generic Auto Bootloader/Programmer for Arduino Nano
This programmer is specifically designed for burning bootloaders (without a computer) on Arduino-compatible ATmega328 development boards. Simply plug the programmer into the ICSP interface to re-burn the bootloader. It’s also compatible with new chips, provided the IC is functional. Note: Burning a bootloader erases all previous chip data. Features Working voltage: 3.1-5.3 V Working current: 10 mA Compatible with Arduino Nano based boards (ATmega328) Dimensions: 39.6 x 15.5 x 7.8 mm
€ 14,95€ 7,50
Members identical
-
Elektor Labs Elektor Arduino Nano MCCAB Training Board
The Elektor Arduino Nano MCCAB Training Board contains all the components (incl. Arduino Nano) required for the exercises in the "Microcontrollers Hands-on Course for Arduino Starters", such as light-emitting diodes, switches, pushbuttons, acoustic signal transmitters, etc. External sensors, motors or assemblies can also be queried or controlled with this microcontroller training system. Specifications (Arduino Nano MCCAB Training Board) Power Supply Via the USB connection of the connected PC or an external power supply unit (not included) Operating Voltage +5 Vcc Input Voltage All inputs 0 V to +5 V VX1 and VX2 +8 V to +12 V (only when using an external power supply) Hardware periphery LCD 2x16 characters Potentiometer P1 & P2 JP3: selection of operating voltage of P1 & P2 Distributor SV4: Distributor for the operating voltagesSV5, SV6: Distributor for the inputs/outputs of the microcontroller Switches and buttons RESET button on the Arduino Nano module 6x pushbutton switches K1 ... K6 6x slide switches S1 ... S6 JP2: Connection of the switches with the inputs of the microcontroller Buzzer Piezo buzzer Buzzer1 with jumper on JP6 Indicator lights 11 x LED: Status indicator for the inputs/outputs LED L on the Arduino Nano module, connected to GPIO D13 JP6: Connection of LEDs LD10 ... LD20 with GPIOs D2 ... D12 Serial interfacesSPI & I²C JP4: Selection of the signal at pin X of the SPI connector SV12 SV9 to SV12: SPI interface (3.3 V/5 V) or I²C interface Switching output for external devices SV1, SV7: Switching output (maximum +24 V/160 mA, externally supplied) SV2: 2x13 pins for connection of external modules 3x3 LED matrix(9 red LEDs) SV3: Columns of the 3x3 LED matrix (outputs D6 ... D8) JP1: Connection of the rows with the GPIOs D3 ... D5 Software Library MCCABLib Control of hardware components (switches, buttons, LEDs, 3x3 LED matrix, buzzer) on the MCCAB Training Board Operating Temperature Up to +40 °C Dimensions 100 x 100 x 20 mm Specifications (Arduino Nano) Microcontroller ATmega328P Architecture AVR Operating Voltage 5 V Flash Memory 32 KB, of which 2 KB used by bootloader SRAM 2 KB Clock Speed 16 MHz Analog IN Pins 8 EEPROM 1 KB DC Current per I/O Pins 40 mA on one I/O pin, total maximum 200 mA on all pins together Input Voltage 7-12 V Digital I/O Pins 22 (6 of which are PWM) PWM Output 6 Power Consumption 19 mA Dimensions 18 x 45 mm Weight 7 g Included 1x Elektor Arduino Nano Training Board MCCAB 1x Arduino Nano
€ 79,95
Members € 71,96
-
Elektor Digital Kickstart to Arduino Nano (E-book)
Get Cracking with the Arduino Nano V3, Nano Every, and Nano 33 IoT The seven chapters in this book serve as the first step for novices and microcontroller enthusiasts wishing to make a head start in Arduino programming. The first chapter introduces the Arduino platform, ecosystem, and existing varieties of Arduino Nano boards. It also teaches how to install various tools needed to get started with Arduino Programming. The second chapter kicks off with electronic circuit building and programming around your Arduino. The third chapter explores various buses and analog inputs. In the fourth chapter, you get acquainted with the concept of pulse width modulation (PWM) and working with unipolar stepper motors. In the fifth chapter, you are sure to learn about creating beautiful graphics and basic but useful animation with the aid of an external display. The sixth chapter introduces the readers to the concept of I/O devices such as sensors and the piezo buzzer, exploring their methods of interfacing and programming with the Arduino Nano. The last chapter explores another member of Arduino Nano family, Arduino Nano 33 IoT with its highly interesting capabilities. This chapter employs and deepens many concepts learned from previous chapters to create interesting applications for the vast world of the Internet of Things. The entire book follows a step-by-step approach to explain concepts and the operation of things. Each concept is invariably followed by a to-the-point circuit diagram and code examples. Next come detailed explanations of the syntax and the logic used. By closely following the concepts, you will become comfortable with circuit building, Arduino programming, the workings of the code examples, and the circuit diagrams presented. The book also has plenty of references to external resources wherever needed. An archive file (.zip) comprising the software examples and Fritzing-style circuit diagrams discussed in the book may be downloaded free of charge below.
€ 29,95
Members € 23,96
-
Espressif ESP32-WROOM-32D
The ESP32-WROOM-32, measuring 25.2 x 18 mm only, contains the ESP32 SoC, flash memory, precision discrete components, and PCB antenna to provide outstanding RF performance in space-constrained applications. ESP32-WROOM-32 is a powerful, generic Wi-Fi + BT + BLE MCU module that targets a wide variety of applications, ranging from low-power sensor networks to the most demanding tasks, such as voice encoding, music streaming and MP3 decoding. At the core of this module is the ESP32-D0WDQ6 chip. The chip embedded is designed to be scalable and adaptive. There are two CPU cores that can be individually controlled, and the clock frequency is adjustable from 80 MHz to 240 MHz. The user may also power off the CPU and make use of the low-power co-processor to monitor the peripherals for changes or crossing of thresholds constantly. ESP32 integrates a rich set of peripherals, ranging from capacitive touch sensors, Hall sensors, SD card interface, Ethernet, high-speed SPI, UART, I²S and I²C. The integration of Bluetooth, Bluetooth LE and Wi-Fi ensures that a wide range of applications can be targeted and that the module is future proof. Using Wi-Fi allows a vast physical range and direct connection to the internet through a Wi-Fi router while using Bluetooth allows the user to conveniently connect to the phone or broadcast low energy beacons for its detection. The sleep current of the ESP32 chip is less than 5 µA, making it suitable for battery powered and wearable electronics applications. ESP32 supports a data rate of up to 150 Mbps, and 20.5 dBm output power at the antenna to ensure the broadest physical range. As such the chip does offer industry-leading specifications and the best performance for electronic integration, range, power consumption, and connectivity. Downloads Datasheet
€ 9,95€ 4,95
Members identical
-
Espressif ESP32-S2-WROVER
At the core of this module is ESP32-S2, an Xtensa® 32-bit LX7 CPU that operates at up to 240 MHz. The chip has a low-power co-processor that can be used instead of the CPU to save power while performing tasks that do not require much computing power, such as monitoring of peripherals. ESP32-S2 integrates a rich set of peripherals, ranging from SPI, I²S, UART, I²C, LED PWM, TWAITM, LCD, Camera interface, ADC, DAC, touch sensor, temperature sensor, as well as up to 43 GPIOs. It also includes a full-speed USB On-The-Go (OTG) interface to enable USB communication.FeaturesMCU ESP32-S2 embedded, Xtensa® single-core 32-bit LX7 microprocessor, up to 240 MHz 128 KB ROM 320 KB SRAM 16 KB SRAM in RTC WiFi 802.11 b/g/n Bit rate: 802.11n up to 150 Mbps A-MPDU and A-MSDU aggregation 0.4 µs guard interval support Center frequency range of operating channel: 2412 ~ 2484 MHz Hardware Interfaces: GPIO, SPI, LCD, UART, I²C, I²S, Camera interface, IR, pulse counter, LED PWM, TWAI (compatible with ISO 11898-1), USB OTG 1.1, ADC, DAC, touch sensor, temperature sensor 40 MHz crystal oscillator 4 MB SPI flash Operating voltage/Power supply: 3.0 ~ 3.6 V Operating temperature range: –40 ~ 85 °C Dimensions: 18 × 31 × 3.3 mm Applications Generic Low-power IoT Sensor Hub Generic Low-power IoT Data Loggers Cameras for Video Streaming Over-the-top (OTT) Devices USB Devices Speech Recognition Image Recognition Mesh Network Home Automation Smart Home Control Panel Smart Building Industrial Automation Smart Agriculture Audio Applications Health Care Applications Wi-Fi-enabled Toys Wearable Electronics Retail & Catering Applications Smart POS Machines
€ 7,95€ 3,95
Members identical
-
Espressif ESP32-PICO-Kit
The ESP32-PICO-Kit fits into a mini breadboard. It is fully functional with the minimum number of discrete components, while it has all the ESP32 pins exposed. Features Complete up-to-date documentation is available. All instructions and commands presented work as described. Plentiful additional information and hardware documentation are available too. Applications for the ESP32-PICO-KIT can be developed on Windows, Linux or Mac. Two cores and a radio Like the ESP8266 the ESP32 has Wi-Fi but adds Bluetooth. It also has two 32-bit cores inside, making it extremely powerful, and providing all the ports and interfaces that the ESP8266 is lacking.Oversimplifying things, one might say that the ESP8266 is a Wi-Fi controller that provides some I/O, whereas the ESP32 is a full-fledged controller that also has Wi-Fi. ESP32 peripherals The ESP32 exposes an ADC & DAC, touch sensor circuitry, an SD/SDIO/MMC host controller, an SDIO/SPI slave controller, an EMAC, PWM to control LEDs and motors, UART, SPI, I²C, I²S, infrared remote controller, and, of course, GPIO. ESP32-PICO-KIT Development board The ESP32-PICO-D4 is a System-on-Chip (SoC) integrating an ESP32 chip together with a 4 MB SPI flash memory in a tiny 7 x 7 mm package. The ESP32-PICO-KIT is a breakout board for this SoC with an onboard USB-to-serial converter for easy programming and debugging. Besides the board, you'll need a programming toolchain. Complete, up-to-date documentation from Espressif is available on the Read the Docs website. All instructions and commands presented work as described.Plentiful additional information and hardware documentation are available too. Applications for the ESP32-PICO-KIT can be developed on Windows, Linux or Mac.
€ 19,95€ 9,95
Members identical
-
Elektor Academy Pro ESP32 by Example (Learning Course)
Complete ESP32 microcontroller learning course featuring a custom-designed MCU expansion board, hands-on projects, and a comprehensive online guide – perfect for learning hardware, programming, and connectivity step by step. A Practical Introduction to Embedded Systems with the ESP32 This course is designed for readers who are new to embedded systems and looking for a structured, example-driven way to get started. If you’ve explored general-purpose electronics or Arduino-based materials but found them too broad or lacking in practical guidance, this course offers a more focused alternative. Using the "ESP32 by Example Kit" (EEK) – a compact and affordable set of components featuring LEDs, sensors, an OLED display, and a motion processor – you’ll work with a consistent hardware setup throughout the course. Once assembled, the EEK stays mostly unchanged, allowing you to concentrate on learning and experimentation without constant reconfiguration. Topics include: Understanding and programming the ESP32 microcontroller Writing and deploying code with the Arduino IDE Exploring cyber-physical systems, culminating in basic drone control No prior experience with Arduino or embedded development is required. Each section features hands-on examples and mini-projects designed to reinforce key concepts and inspire deeper exploration. By the end of the course, you’ll be able not only to reproduce the book’s examples but also to build on them with your own ideas and applications. Whether you're interested in embedded programming, interactive systems, or introductory drone control, this course provides a clear and practical path to getting started. What you'll learn? Embedded programming with the ESP32 using the Arduino IDE Real-time sensor input and control via buttons, LEDs, and displays Gesture-based interaction using the MPU6050 motion sensor Bluetooth gamepad integration and drone control simulation Wi-Fi and UDP networking, local web servers, and NTP MQTT communication with cloud platforms like AWS and Arduino IoT How to build and deploy full-featured IoT systems Perfect for Students and self-learners exploring embedded systems Makers and IoT enthusiasts looking to improve their hardware skills Educators and trainers seeking ready-to-teach material Developers moving beyond Raspberry Pi or Arduino basics Support when you need it Access to instructors via Elektor Academy Helpful community forums and essential documentation What's inside the Box (Course)? New 384-page book: "ESP32 by Example" (valued at €45) Elektor ESP32 by Example Kit (EEK): Microcontroller Extension Board with 6 LEDs and 6 Buttons installed + OLED Display, MPU6050 3-axis Accelerometer and Gyroscope Module (valued at €40) Adafruit HUZZAH32 – ESP32 Feather MCU Board (valued at €30) ESP32 Cheap Yellow Display Board (valued at €25) DHT11 Humidity & Temperature Sensor Breadboard Jumper wires USB-C cable Access to the full course on the Elektor Academy Pro Learning Platform Instructional videos Downloadable Arduino project files for every module Learning Material (of this Box/Course) ▶ Click here to open Module 1 – Getting Started with the ESP32 & EEK Module 2 – Digital Output – LEDs and GPIO Module 3 – Switches and Input Handling Module 4 – EEK and PWM Module 5 – OLED and Display Output Module 6 – Motion Sensing with the MPU6050 Module 7 – Capstone Project (EEK in Action) Module 8 – WiFi and Web Control with ESP32 Module 9 – Cloud Concepts using EEK Module 10 – Hands-on: Arduino IoT Cloud and EEK Module 11 – BlueTooth and EEK GamePad Integration Module 12 – Why Drones? Module 13 – Drone Simulator Concepts Module 14 – Simple Drone Flight Control Module 15 – Real-Time Drone Flight Control Module 16 – Drone Control Mini-Projects Module 17 – Middleware and Python Scripting Module 18 – Python Applications for Drone Control Module 19 – Capstone EEK Control Project and Presentation About the Author Dr. Jim Solderitsch is an educator, software architect, systems developer, and cybersecurity researcher with a focus on cyber-physical systems. He currently serves as an Adjunct Professor in Computing Sciences at Villanova University in Pennsylvania. What is Elektor Academy Pro? Elektor Academy Pro delivers specialized learning solutions designed for professionals, engineering teams, and technical experts in the electronics and embedded systems industry. It enables individuals and organizations to expand their practical knowledge, enhance their skills, and stay ahead of the curve through high-quality resources and hands-on training tools. From real-world projects and expert-led courses to in-depth technical insights, Elektor empowers engineers to tackle today’s electronics and embedded systems challenges. Our educational offerings include Academy Books, Pro Boxes, Webinars, Conferences, and industry-focused B2B magazines – all created with professional development in mind. Whether you're an engineer, R&D specialist, or technical decision-maker, Elektor Academy Pro bridges the gap between theory and practice, helping you master emerging technologies and drive innovation within your organization.
€ 269,00€ 219,00
Members identical
-
Elektor Labs Elektor ESP32 Energy Meter
The Elektor ESP32 Energy Meter is a device designed for real-time energy monitoring and smart home integration. Powered by the ESP32-S3 microcontroller, it offers robust performance with modular and scalable features. The device uses a 220 V-to-12 V step-down transformer for voltage sampling, ensuring galvanic isolation and safety. Its compact PCB layout includes screw-type terminal blocks for secure connections, a Qwiic connector for additional sensors, and a programming header for direct ESP32-S3 configuration. The energy meter is compatible with single-phase and three-phase systems, making it adaptable for various applications. The energy meter is simple to set up and integrates with Home Assistant, offering real-time monitoring, historical analytics, and automation capabilities. It provides accurate measurements of voltage, current, and power, making it a valuable tool for energy management in homes and businesses. Features Comprehensive Energy Monitoring: Get detailed insights into your energy usage for smarter management and cost savings. Customizable Software: Tailor functionality to your needs by programming and integrating custom sensors. Smart Home Ready: Compatible with ESPHome, Home Assistant, and MQTT for full Smart Home integration. Safe & Flexible Design: Operates with a 220 V-to-12 V step-down transformer and features a pre-assembled SMD board. Quick Start: Includes one Current Transformer (CT) sensor and access to free setup resources. Specifications Microcontroller ESP32-S3-WROOM-1-N8R2 Energy Metering IC ATM90E32AS Status Indicators 4x LEDs for power consumption indication2x Programmable LEDs for custom status notifications User Input 2x Push buttons for user control Display Output I²C OLED display for real-time power consumption visualization Input Voltage 110/220 V AC (via step-down transformer) Input Power 12 V (via step-down transformer or DC input) Clamp Current Sensor YHDC SCT013-000 (100 A/50 mA) included Smart Home Integration ESPHome, Home Assistant, and MQTT for seamless connectivity Connectivity Header for programming, Qwiic for sensor expansion Applications Supports single-phase and three-phase energy monitoring systems Dimensions 79.5 x 79.5 mm Included 1x Partly assembled board (SMDs are pre-mounted) 2x Screw terminal block connerctors (not mounted) 1x YHDC SCT013-000 current transformer Required Power transformer not included Downloads Datasheet (ESP32-S3-WROOM-1) Datasheet (ATM90E32AS) Datasheet (SCT013-000) Frequently Asked Questions (FAQ) From Prototype to Finished Product What started as an innovative project to create a reliable and user-friendly energy meter using the ESP32-S3 microcontroller has evolved into a robust product. Initially developed as an open-source project, the ESP32 Energy Meter aimed to provide precise energy monitoring, smart home integration and more. Through meticulous hardware and firmware development, the energy meter now stands as a compact, versatile solution for energy management.
€ 79,95€ 64,95
Members identical
-
Espressif ESP32-S2-WROOM
At the core of this module is ESP32-S2, an Xtensa® 32-bit LX7 CPU that operates at up to 240 MHz. The chip has a low-power co-processor that can be used instead of the CPU to save power while performing tasks that do not require much computing power, such as monitoring of peripherals. ESP32-S2 integrates a rich set of peripherals, ranging from SPI, I²S, UART, I²C, LED PWM, TWAITM, LCD, Camera interface, ADC, DAC, touch sensor, temperature sensor, as well as up to 43 GPIOs. It also includes a full-speed USB On-The-Go (OTG) interface to enable USB communication.FeaturesMCU ESP32-S2 embedded, Xtensa® single-core 32-bit LX7 microprocessor, up to 240 MHz 128 KB ROM 320 KB SRAM 16 KB SRAM in RTC WiFi 802.11 b/g/n Bit rate: 802.11n up to 150 Mbps A-MPDU and A-MSDU aggregation 0.4 µs guard interval support Center frequency range of operating channel: 2412 ~ 2484 MHz Hardware Interfaces: GPIO, SPI, LCD, UART, I²C, I²S, Camera interface, IR, pulse counter, LED PWM, TWAI (compatible with ISO 11898-1), USB OTG 1.1, ADC, DAC, touch sensor, temperature sensor 40 MHz crystal oscillator 4 MB SPI flash Operating voltage/Power supply: 3.0 ~ 3.6 V Operating temperature range: –40 ~ 85 °C Dimensions: 18 × 31 × 3.3 mm Applications Generic Low-power IoT Sensor Hub Generic Low-power IoT Data Loggers Cameras for Video Streaming Over-the-top (OTT) Devices USB Devices Speech Recognition Image Recognition Mesh Network Home Automation Smart Home Control Panel Smart Building Industrial Automation Smart Agriculture Audio Applications Health Care Applications Wi-Fi-enabled Toys Wearable Electronics Retail & Catering Applications Smart POS Machines
€ 6,95€ 3,50
Members identical