This book details the use of the Arduino Uno and the Raspberry Pi 4 in practical CAN bus based projects. Using either the Arduino Uno or the Raspberry Pi with off-the-shelf CAN bus interface modules considerably ease developing, debugging, and testing CAN bus based projects.
This book is written for students, practicing engineers, enthusiasts, and for everyone else wanting to learn more about the CAN bus and its applications. The book assumes that the reader has some knowledge of basic electronics. Knowledge of the C and Python programming languages and programming the Arduino Uno using its IDE and Raspberry Pi will be useful, especially if the reader intends to develop microcontroller-based projects using the CAN bus.
The book should be a useful source of reference material for anyone interested in finding answers to questions such as:
What bus systems are available for the automotive industry?
What are the principles of the CAN bus?
How can I create a physical CAN bus?
What types of frames (or data packets) are available in a CAN bus system?
How can errors be detected in a CAN bus system and how dependable is a CAN bus system?
What types of CAN bus controllers exist?
How do I use the MCP2515 CAN bus controller?
How do I create 2-node Arduino Uno-based CAN bus projects?
How do I create 3-node Arduino Uno-based CAN bus projects?
How do I set the acceptance masks and acceptance filters?
How do I analyze data on the CAN bus?
How do I create 2-node Raspberry Pi-based CAN bus projects?
How do I create 3-node Raspberry Pi-based CAN bus projects?
Measuring conducted emission is the simplest and most affordable method of getting some indication of whether a design can meet EMI/EMC requirements. A Line Impedance Stabilization Network (LISN) is an indispensable part of an EMC pre-compliance test setup.
In cooperation with Würth Elektronik, Elektor has developed a 5 µH, 50 Ω Dual DC LISN that supports voltages up to 60 V and currents up to 10 A.
The instrument measures RF interferences on both channels (the power supply) by means of 5-μH blocking inductances. The internal 10-dB attenuation network – one in each channel – contains a 3rd-order high-pass filter with a cutoff frequency of 9 kHz to protect the input of instruments like a spectrum analyzer from potentially harmful DC voltages or low frequencies coming from the EUT (Equipment Under Test).
Specifications
RF path
Channels
2 (with clamping diodes)
Bandwidth
150 kHz – 200 MHz
Inductance
5 μH || 50 Ω
Internal attenuation
10 dB
Connectors
SMA
DC path
Max. current
< 10 ADC
Max. voltage
< 60 VDC
DC resistance
< 2 x 70 mΩ
PCB size
94.2 x 57.4 mm
Connectors
4-mm banana
Hammond enclosure
Type
1590N
Dimensions
121 x 66 x 40 mm
Included
1x 4-layer PCB with all SMT parts fitted
1x pre-drilled enclosure with ready-printed front panel layout
5x gold-plated, insulated, 4-mm banana sockets, rated for 24 A, 1 kV
1x Hammond enclosure 1590N1, Aluminum (Die-Cast Alloy)
More Info
Project on Elektor Labs: Dual DC LISN for EMC pre-compliance testing
Elektor 9-10/2021: EMC Pre-Compliance Test for Your DC-Powered Project (Part 1)
Elektor 11-12/2021: EMC Pre-Compliance Test for Your DC-Powered Project (Part 2)
Program, build, and master 60+ projects with the Wireless RP2040
The Raspberry Pi Pico and Pico W are based on the fast, efficient, and low-cost dual-core ARM Cortex M0+ RP2040 microcontroller chip running at up to 133 MHz and sporting 264 KB of SRAM and 2 MB of Flash memory. Besides spacious memory, the Pico and Pico W offer many GPIO pins, and popular peripheral interface modules like ADC, SPI, I²C, UART, PWM, timing modules, a hardware debug interface, and an internal temperature sensor.
The Raspberry Pi Pico W additionally includes an on-board Infineon CYW43439 Bluetooth and Wi-Fi chipset. At the time of writing this book, the Bluetooth firmware was not yet available. Wi-Fi is however fully supported at 2.4 GHz using the 802.11b/g/n protocols.
This book is an introduction to using the Raspberry Pi Pico W in conjunction with the MicroPython programming language. The Thonny development environment (IDE) is used in all of the 60+ working and tested projects covering the following topics:
Installing the MicroPython on Raspberry Pi Pico using a Raspberry Pi or a PC
Timer interrupts and external interrupts
Analogue-to-digital converter (ADC) projects
Using the internal temperature sensor and external sensor chips
Using the internal temperature sensor and external temperature sensor chips
Datalogging projects
PWM, UART, I²C, and SPI projects
Using Bluetooth, WiFi, and apps to communicate with smartphones
Digital-to-analogue converter (DAC) projects
All projects are tried & tested. They can be implemented on both the Raspberry Pi Pico and Raspberry Pi Pico W, although the Wi-Fi-based subjects will run on the Pico W only. Basic programming and electronics experience are required to follow the projects. Brief descriptions, block diagrams, detailed circuit diagrams, and full MicroPython program listings are given for all projects.
For Raspberry Pi, ESP32 and nRF52 with Python, Arduino and Zephyr
Bluetooth Low Energy (BLE) radio chips are ubiquitous from Raspberry Pi to light bulbs. BLE is an elaborate technology with a comprehensive specification, but the basics are quite accessible.
A progressive and systematic approach will lead you far in mastering this wireless communication technique, which is essential for working in low power scenarios.
In this book, you’ll learn how to:
Discover BLE devices in the neighborhood by listening to their advertisements.
Create your own BLE devices advertising data.
Connect to BLE devices such as heart rate monitors and proximity reporters.
Create secure connections to BLE devices with encryption and authentication.
Understand BLE service and profile specifications and implement them.
Reverse engineer a BLE device with a proprietary implementation and control it with your own software.
Make your BLE devices use as little power as possible.
This book shows you the ropes of BLE programming with Python and the Bleak library on a Raspberry Pi or PC, with C++ and NimBLE-Arduino on Espressif’s ESP32 development boards, and with C on one of the development boards supported by the Zephyr real-time operating system, such as Nordic Semiconductor's nRF52 boards.
Starting with a very little amount of theory, you’ll develop code right from the beginning. After you’ve completed this book, you’ll know enough to create your own BLE applications.
The Arduino Uno is an open-source microcontroller development system encompassing hardware, an Integrated Development Environment (IDE), and a vast number of libraries. It is supported by an enormous community of programmers, electronic engineers, enthusiasts, and academics. The libraries in particular really smooth Arduino programming and reduce programming time. What’s more, the libraries greatly facilitate testing your programs since most come fully tested and working. The Raspberry Pi 4 can be used in many applications such as audio and video media devices. It also works in industrial controllers, robotics, games, and in many domestic and commercial applications. The Raspberry Pi 4 also offers Wi-Fi and Bluetooth capability which makes it great for remote and Internet-based control and monitoring applications. This book is about using both the Raspberry Pi 4 and the Arduino Uno in PID-based automatic control applications. The book starts with basic theory of the control systems and feedback control. Working and tested projects are given for controlling real-life systems using PID controllers. The open-loop step time response, tuning the PID parameters, and the closed-loop time response of the developed systems are discussed together with the block diagrams, circuit diagrams, PID controller algorithms, and the full program listings for both the Raspberry Pi and the Arduino Uno. The projects given in the book aim to teach the theory and applications of PID controllers and can be modified easily as desired for other applications. The projects given for the Raspberry Pi 4 should work with all other models of Raspberry Pi family. The book covers the following topics: Open-loop and closed-loop control systems Analog and digital sensors Transfer functions and continuous-time systems First-order and second-order system time responses Discrete-time digital systems Continuous-time PID controllers Discrete-time PID controllers ON-OFF temperature control with Raspberry Pi and Arduino Uno PID-based temperature control with Raspberry Pi and Arduino Uno PID-based DC motor control with Raspberry Pi and Arduino Uno PID-based water level control with Raspberry Pi and Arduino Uno PID-based LED-LDR brightness control with Raspberry Pi and Arduino Uno
This LCR meter offers a wide range of functions at a low price. The LCR meter can measure capacitance, resistance, and inductance among other things. In addition, it can automatically recognize components, for example, it can distinguish between different types of transistors, such as NPN or PNP transistors. The device is particularly easy to operate, as all measurements are started at the touch of a single button.
Thanks to the integrated 350 mAh battery, measurements can also be carried out on the road. The battery is charged with the help of a 5 V power supply unit (available separately) and the enclosed micro-USB cable.
In addition, this measuring device can decode infrared signals and show them as a waveform on the display.
Specifications
Measurable components
Resistor, capacitor, inductor, thyristor, triac, (double) diode, Z-diode, field effect transistor, bipolar transistor, infrared decoder
Display type
3.5" TFT LCD (160 x 128 p)
Special features
Automatic calibration, One key operation
Built-in battery
Lithium Ion rechargeable, 3,7 V, 350 mAh
Dimensions
90 x 70 x 27 mm
Items delivered
Tester, Micro-USB cable, Test clip, LED, Capacitor
Measuring Ranges
Capacitance
25 pF - 100 mF
Resistance
0.01 Ω - 50 MΩ
Inductance
0.01 mH - 20 H
Battery
0.1 V - 4.5 V, 300 mAh
Z-diode breakdown voltage
0.01 V - 30 V
Z-diode
0.01 V - 4.5 V
Diode
UF < 4,5 V
Thyristor / Triac
IGT < 6 mA
Downloads
Manual
With the availability of free and open source C/C++ compilers today, you might wonder why someone would be interested in assembler language. What is so compelling about the RISC-V Instruction Set Architecture (ISA)? How does RISC-V differ from existing architectures? And most importantly, how do we gain experience with the RISC-V without a major investment? Is there affordable hardware available?
The availability of the Espressif ESP32-C3 chip provides a way to get hands-on experience with RISC-V. The open sourced QEMU emulator adds a 64-bit experience in RISC-V under Linux. These are just two ways for the student and enthusiast alike to explore RISC-V in this book.
The projects in this book are boiled down to the barest essentials to keep the assembly language concepts clear and simple. In this manner you will have “aha!” moments rather than puzzling about something difficult. The focus in this book is about learning how to write RISC-V assembly language code without getting bogged down. As you work your way through this tutorial, you’ll build up small demonstration programs to be run and tested. Often the result is some simple printed messages to prove a concept. Once you’ve mastered these basic concepts, you will be well equipped to apply assembly language in larger projects.
The lab power supply JT-RD6006 provides up to 60 V and 6 A in combination with the powerful DC power source. Due to the keypad and a push and rotary encoder, the operation of the power supply unit is very comfortable. In addition, you can easily save and reload up to nine settings using the keypad. The high-resolution 2.4-inch colour display clearly shows all important information. The USB interface and an optional wireless network interface enable the device to be operated via PC or with an app from mobile devices. Moreover, the device has different protection and limit functions like constant voltage operation, constant current operation, overvoltage protection, overcurrent protection and replaceable fuses on the board itself (backside of the power supply). Specifications Input voltage 6-70 V Output voltage 0-60 V Output current 0-6 A Output power 0-360 W Voltage resolution 0.01 V Current resolution 0.001 A Capacity measuring range 0-9999.99 Ah Energy measuring range 0-9999.99 Wh Residual ripple 100 mV(pp) at maximal capacity Display 2.4 inch LCD Dimensions (housing) 172 x 86 x 310 mm Weight (incl. device, power supply and housing) 3 kg Included JT-RD6006 DC Power Supply Power Supply for JT-RD6006 (RD6006-NT) Large aluminium housing for JT-RD6006 (Case02) ESP-12F WiFi Module Downloads Datasheet JT-RD6006 Manual JT-RD6006 PC Software Windows driver Mac driver Linux driver
The Andonstar AD409 Pro-ES is a digital microscope with an extra-high stand that is also equipped with an endoscope. The microscope allows clear observation of the sides of components, the inside of pipes, etc., enabling 360° observation without dead angles. The microscope also has a remote control that allows you to easily switch between the following image modes: two-lens, microscope and endoscope.
Features
High-quality metal lens and focusing barrel
Professional HDMI digital microscope supports multiple output methods
Soldering Microscope with Pro Metal Stand
Unique UV filter design
8 Levels adjustable LED Lights
Convenient Wireless Remote Control
Professional Measurement Software
Specifications
Screen size
10.1 inch (25.7 cm)
Image sensor
4 MP
Video output
UHD 2880x2160 (24fps)FHD 1920x1080 (60fps/30fps)HD 1280x720 (120fps)
Video format
MP4
Magnification
Up to 300 times (27 inch HDMI monitor)
Photo resolution
Max. 12 MP (4032x3024)
Photo format
JPG
Focus range
Min. 5 cm
Frame Rate
Max. 120fps
Video interface
HDMI
Storage
microSD card (up to 64 GB)
PC support
Windows, PC software with measurement
Mobile phone, tablet terminal support
Support WiFi connection and measurement
Power source
5 V DC
Light source
2 LEDs with the stand
Endoscope
Yes
Stand size
18 x 20 x 32 cm
Included
1x Andonstar AD409 Pro-ES Digital Microscope
1x Endoscope
1x Metal stand with 2 LEDs
1x UV filter (already assembled in the lens)
1x IR remote
1x Switch cable
1x Power adapter
1x Wrench
2x Metal clips
1x HDMI cable
1x User manual
Downloads
Manual
Software
Model Comparison
AD407
AD407 Pro
AD409
AD409 Pro-ES
Screen size
7 inch (17.8 cm)
7 inch (17.8 cm)
10.1 inch (25.7 cm)
10.1 inch (25.7 cm)
Image sensor
4 MP
4 MP
4 MP
4 MP
Video output
2160p
2160p
2160p
2160p
Interfaces
HDMI
HDMI
USB, HDMI, WiFi
USB, HDMI, WiFi
Video format
MP4
MP4
MP4
MP4
Magnification
Up to 270x
Up to 270x
Up to 300x
Up to 300x
Photo resolution
Max. 4032x3024
Max. 4032x3024
Max. 4032x3024
Max. 4032x3024
Photo format
JPG
JPG
JPG
JPG
Focus distance
Min. 5 cm
Min. 5 cm
Min. 5 cm
Min. 5 cm
Frame rate
Max. 120f/s
Max. 120f/s
Max. 120f/s
Max. 120f/s
Storage
microSD card
microSD card
microSD card
microSD card
PC support
No
No
Windows
Windows
Mobile connection
No
No
WiFi + Measurement
WiFi + Measurement
Power source
5 V DC
5 V DC
5 V DC
5 V DC
Light source
2 LEDs with the stand
2 LEDs with the stand
2 LEDs with the stand
2 LEDs with the stand
Endoscope
No
No
No
Yes
Stand size
20 x 12 x 19 cm
20 x 18 x 32 cm
18 x 20 x 30 cm
18 x 20 x 32 cm
Weight
1.6 kg
2.1 kg
2.2 kg
2.5 kg
Price
€259.00€199.00
€289.00€229.00
€399.00€279.00
€449.00€299.00
The Elektor MultiCalculator Kit is an Arduino-based multifunction calculator that goes beyond basic calculations. It offers 22 functions including light and temperature measurement, differential temperature analysis, and NEC IR remote control decoding. The Elektor MultiCalculator is a handy tool for use in your projects or for educational purposes.
The kit features a Pro Mini module as the computing unit. The PCB is easy to assemble using through-hole components. The enclosure consists of 11 acrylic panels and mounting materials for easy assembly. Additionally, the device is equipped with a 16x2 alphanumeric LCD, 20 buttons, and temperature sensors.
The Elektor MultiCalculator is programmable with the Arduino IDE through a 6-way PCB header. The available software is bilingual (English and Dutch). The calculator can be programmed with a programming adapter, and it is powered through USB-C.
Modes of Operation
Calculator
4-Ring Resistor Code
5-Ring Resistor Code
Decimal to Hexadecimal and Character (ASCII) conversion
Hexadecimal to Decimal and Character (ASCII) conversion
Decimal to Binary and Character (ASCII) conversion
Binary to Decimal and Hexadecimal conversion
Hz, nF, capacitive reactance (XC) calculation
Hz, µH, inductive reactance (XL) calculation
Resistance calculation of two resistors connected in parallel
Resistance calculation of two resistors connected in series
Calculation of unknown parallel resistor
Temperature measurement
Differential temperature measurement T1&T2 and Delta (δ)
Light measurement
Stopwatch with lap time function
Item counter
NEC IR remote control decoding
AWG conversion (American Wire Gauge)
Rolling Dice
Personalize startup message
Temperature calibration
Specifications
Menu languages: English, Dutch
Dimensions: 92 x 138 x 40 mm
Build time: approx. 5 hours
Included
PCB and though-hole components
Precut acrylic sheets with all mechanical parts
Pro Mini microcontroller module (ATmega328/5 V/16 MHz)
Programming adapter
Waterproof temperature sensors
USB-C cable
Downloads
Software
Secure, Modular, Open-Source and Self-Sufficient
Ever since the Raspberry Pi was introduced, it has been used by enthusiasts to automate their homes. The Raspberry Pi is a powerful computer in a small package, with lots of interfacing options to control various devices. This book shows you how you can automate your home with a Raspberry Pi. You’ll learn how to use various wireless protocols for home automation, such as Bluetooth, 433.92 MHz radio waves, Z-Wave, and Zigbee. Soon you’ll automate your home with Python, Node-RED, and Home Assistant, and you’ll even be able to speak to your home automation system. All this is done securely, with a modular system, completely open-source, without relying on third-party services. You’re in control of your home, and no one else.
At the end of this book, you can install and configure your Raspberry Pi as a highly flexible home automation gateway for protocols of your choice, and link various services with MQTT to make it your own system. This DIY (do it yourself) approach is a bit more laborious than just installing an off-the-shelf home automation system, but in the process, you can learn a lot, and in the end, you know exactly what’s running your house and how to tweak it. This is why you were interested in the Raspberry Pi in the first place, right?
Turn your Raspberry Pi into a reliable gateway for various home automation protocols.
Make your home automation setup reproducible with Docker Compose.
Secure all your network communication with TLS.
Create a video surveillance system for your home.
Automate your home with Python, Node-RED, Home Assistant and AppDaemon.
Securely access your home automation dashboard from remote locations.
Use fully offline voice commands in your own language.
Download the software and view the errata for the book on GitHub.
The official Raspberry Pi micro HDMI to HDMI (A/M) cable (black, 1 m) designed for the Raspberry Pi 4 and 5. 19-pin HDMI Type D(M) to 19-pin HDMI Type A(M) 1 m cable (black) Nickel-plated plugs 4Kp60 compliant RoHS compliant 3 Mohm 300 VDC insulation, withstands 300 VDC for 0.1s
The Andonstar AD409 microscope is equipped with a 10.1-inch LCD display, giving you a wider viewing range, free your eyes from fatigue.
Features
10.1 inch adjustable LCD display
Adjustable metal stand & monitor
Two metal fixed clips
microSD card
Capture & Recording
Built-in adjustable LEDs
HDMI/USB
Software supported
Specifications
Screen size
10.1 inch (25.7 cm)
Image sensor
4 MP
Video output
UHD 2880x2160 (24fps)FHD 1920x1080 (60fps/30fps)HD 1280x720 (120fps)
Video format
MP4
Magnification
Up to 300 times (27 inch HDMI monitor)
Photo resolution
Max. 12 MP (4032x3024)
Photo format
JPG
Focus range
Min. 5 cm
Frame Rate
Max. 120fps
Video interface
HDMI
Storage
microSD card (up to 32 GB)
PC support
Windows, PC software with measurement
Mobile phone, tablet terminal support
Support WiFi connection and measurement
Power source
5 V DC
Light source
2 LEDs with the stand
Stand size
18 x 20 x 30 cm
Included
1x Andonstar AD409 Digital Microscope
1x Metal stand with 2 LEDs
1x UV filter (already assembled in the lens)
1x IR remote
1x Switch cable
1x Power adapter
1x HDMI cable
1x Manual
Downloads
Manual
Software
Model Comparison
AD407
AD407 Pro
AD409
AD409 Pro-ES
Screen size
7 inch (17.8 cm)
7 inch (17.8 cm)
10.1 inch (25.7 cm)
10.1 inch (25.7 cm)
Image sensor
4 MP
4 MP
4 MP
4 MP
Video output
2160p
2160p
2160p
2160p
Interfaces
HDMI
HDMI
USB, HDMI, WiFi
USB, HDMI, WiFi
Video format
MP4
MP4
MP4
MP4
Magnification
Up to 270x
Up to 270x
Up to 300x
Up to 300x
Photo resolution
Max. 4032x3024
Max. 4032x3024
Max. 4032x3024
Max. 4032x3024
Photo format
JPG
JPG
JPG
JPG
Focus distance
Min. 5 cm
Min. 5 cm
Min. 5 cm
Min. 5 cm
Frame rate
Max. 120f/s
Max. 120f/s
Max. 120f/s
Max. 120f/s
Storage
microSD card
microSD card
microSD card
microSD card
PC support
No
No
Windows
Windows
Mobile connection
No
No
WiFi + Measurement
WiFi + Measurement
Power source
5 V DC
5 V DC
5 V DC
5 V DC
Light source
2 LEDs with the stand
2 LEDs with the stand
2 LEDs with the stand
2 LEDs with the stand
Endoscope
No
No
No
Yes
Stand size
20 x 12 x 19 cm
20 x 18 x 32 cm
18 x 20 x 30 cm
18 x 20 x 32 cm
Weight
1.6 kg
2.1 kg
2.2 kg
2.5 kg
Price
€259.00€199.00
€289.00€229.00
€399.00€279.00
€449.00€299.00
Examine your circuits with high precision and solder even the smallest SMDs and elements without any hassle. Features Multifunctional HDMI Digital Microscope features Full HD, comfortable headroom, improved ergonomy, multiple output signals with different resolutions. Tilt angle of the wide LCD monitor is adjustable. Comes with remote control. Can be used as stand-alone. Specifications Screen size 7 inch (17.8 cm) Image sensor 4 MP Video output UHD 2880x2160 (24fps)FHD 1920x1080 (60fps/30fps)HD 1280x720 (120fps) Video format MP4 Magnification Up to 270 times (27 inch HDMI monitor) Photo resolution Max. 12 MP (4032x3024) Photo format JPG Focus range Min. 5 cm Frame rate Max. 120fps (under 600 Lux Brightness & HDP120) Video interface HDMI Storage microSD card (up to 32 GB) Power source 5 V DC Light source 2 LEDs with the stand Stand size 20 x 12 x 19 cm Included 1x Andonstar AD407 Digital Microscope 1x Metal stand with 2 LEDs 1x Optical bracket 1x UV filter 1x IR remote 1x Switch cable 1x Power adapter 1x HDMI cable 2x Screws 1x Screwdriver 1x User manual Downloads User Manual Model Comparison AD407 AD407 Pro AD409 AD409 Pro-ES Screen size 7 inch (17.8 cm) 7 inch (17.8 cm) 10.1 inch (25.7 cm) 10.1 inch (25.7 cm) Image sensor 4 MP 4 MP 4 MP 4 MP Video output 2160p 2160p 2160p 2160p Interfaces HDMI HDMI USB, HDMI, WiFi USB, HDMI, WiFi Video format MP4 MP4 MP4 MP4 Magnification Up to 270x Up to 270x Up to 300x Up to 300x Photo resolution Max. 4032x3024 Max. 4032x3024 Max. 4032x3024 Max. 4032x3024 Photo format JPG JPG JPG JPG Focus distance Min. 5 cm Min. 5 cm Min. 5 cm Min. 5 cm Frame rate Max. 120f/s Max. 120f/s Max. 120f/s Max. 120f/s Storage microSD card microSD card microSD card microSD card PC support No No Windows Windows Mobile connection No No WiFi + Measurement WiFi + Measurement Power source 5 V DC 5 V DC 5 V DC 5 V DC Light source 2 LEDs with the stand 2 LEDs with the stand 2 LEDs with the stand 2 LEDs with the stand Endoscope No No No Yes Stand size 20 x 12 x 19 cm 20 x 18 x 32 cm 18 x 20 x 30 cm 18 x 20 x 32 cm Weight 1.6 kg 2.1 kg 2.2 kg 2.5 kg Price
€259.00€199.00
€289.00€229.00
€399.00€279.00
€449.00€299.00
The Raspberry Pi USB-C power supply is designed specifically to power the Raspberry Pi 4.
The power supply features a USB-C cable and is available in four different models to suit different international power sockets, and in two colors.
Specifications
Output
Output voltage
+5.1 V DC
Minimum load current
0 A
Nominal load current
3.0 A
Maximum power
15.3 W
Load regulation
±5%
Line regulation
±2%
Ripple & noise
120 mVp-p
Rise time
100 ms maximum to regulation limits for DC outputs
Turn-on delay
3000 ms maximum at nominal input AC voltage and full load
Protection
Short circuit protectionOvercurrent protectionOver temperature protection
Efficiency
81% minimum (output current from 100%, 75%, 50%, 25%)72% minimum at 10% load
Output cable
1.5 m 18AWG
Output connector
USB-C
Input
Voltage range
100-240 V AC (rated)96-264 V AC (operating)
Frequency
50/60 Hz ±3 Hz
Current
0.5 A maximum
Power consumption (no load)
0.075 W maximum
Inrush current
No damage shall occur, and the input fuse shall not blow
Operating ambient temperature
0-40°C
Jan Didden created Linear Audio in 2010 and published 14 Volumes between 2010 and 2017. Each 200-page Volume contains on average 10 articles by expert authors in the field of audio, acoustics, and instrumentation. Whether you are interested in tube amplifiers, solid-state equipment, loudspeaker design, capacitor and resistor distortion or distortion measurement, you are certain to find helpful advice and interesting discussions. From beginner to advanced level, for the audio professional or the serious hobbyist, this ExpertCollection will advance your understanding and offer new perspectives on common issues. Bonus material included with this collection is a 5-part YouTube series on negative feedback as applied to audio by renowned author Jan Didden, and nine additional landmark audio articles and presentations. If you are seriously interested in audio, acoustics, and instrumentation, you can’t afford to miss this! The published material is indexed and fully searchable and will provide an almost limitless resource for many years to come. You can read about Linear Audio’s authors, and the Table of Contents of each Volume, at linearaudio.net.
Elektor GREEN and GOLD members can download their digital edition here.
Not a member yet? Click here.
Arduino Portenta Machine Control and Arduino Portenta H7A CAN-to-MQTT Gateway Demo Project
Unboxing the Elektor LCR Meter with David Cuartielles
MicroPython Enters the World of Arduino
Connected Projects, SimplifiedDive Into the Arduino Cloud
Introduction to TinyMLBig Is Not Always Better
Arduino K-Way
Writing Arduino Sketches Just Got Better
Get to Know Arduino
Getting Started with the Portenta X8Manage Software Securely with Containers
Build, Deploy, and Maintain Scalable, Secure ApplicationsWith Arduino Portenta X8 Featuring NXP’s i.MX 8M Mini Applications Processor and EdgeLock SE050 Secure Element
How I Automated My HomeArduino CEO Fabio Violante Shares Solutions
Altair 8800 SimulatorHardware Simulation of a Vintage Computer
MS-DOS on the Portenta H7Run Old-School Software on Contemporary Hardware
Grow It YourselfA Digitally Controlled, Single-Box Solution for Indoor Farming
Save the Planet With Home Automation?MQTT on the Arduino Nano RP2040 Connect
Go Professional with Arduino Pro
Smart Ovens Take a Leap Into the Future
Tagvance Builds Safer Construction Sites with Arduino
Santagostino Breathes Easywith Remote Monitoring that Leverages AI for Predictive Maintenance
Security Flies High with RIoT Secure’s MKR-Based Solution
Open-Source Brings a New Generation of Water Management to the World
SensoDetect Deforestation with Sound Analysis
The Mozzi Arduino Library for Sound SynthesisInsights from Tim Barrass
The New Portenta X8 (with Linux!) and Max Carrier Redefine What’s Possible
How Using Arduino Helps Students Build Future Skills
Must-Haves for Your Electronics Workspace
The Importance of Robotics in Education
Dependable IoT Based Upon LoRa
Unboxing the Portenta Machine Control
8-Bit Gaming with Arduboy
Reducing Water Usage at Horseback Riding TracksAn IoT to Constantly Monitor Soil Humidity and Temperature Levels
The Panettone ProjectA sourdough starter management and maintenance system
Supporting Arduino Resellers
Space Invaders with Arduino
Art with ArduinoInspiring Insights from Artists and Designers
Arduino Product Catalogue
The Future of Arduino
Designed for overclockers and other power users, this fan keeps your Raspberry Pi 4 at a comfortable operating temperature even under heavy load. The temperature-controlled fan delivers up to 1.4 CFM of airflow over the processor, memory, and power management IC. The bundled heatsink (18 x 8 x 10 mm) with self-adhesive pad improves heat transfer from the processor. The Raspberry Pi 4 Case Fan works with Raspberry Pi 4 and the official Raspberry Pi 4 case.
Easy and Affordable Digital Signal Processing
The aim of this book is to teach the basic principles of Digital Signal Processing (DSP) and to introduce it from a practical point of view using the bare minimum of mathematics. Only the basic level of discrete-time systems theory is given, sufficient to implement DSP applications in real time. The practical implementations are described in real time using the highly popular ESP32 DevKitC microcontroller development board. With the low cost and extremely popular ESP32 microcontroller, you should be able to design elementary DSP projects with sampling frequencies within the audio range. All programming is done using the popular Arduino IDE in conjunction with the C language compiler.
After laying a solid foundation of DSP theory and pertinent discussions on the main DSP software tools on the market, the book presents the following audio-based sound and DSP projects:
Using an I²S-based digital microphone to capture audio sound
Using an I²S-based class-D audio amplifier and speaker
Playing MP3 music stored on an SD card through an I²S-based amplifier and speaker
Playing MP3 music files stored in ESP32 flash memory through an I²S-based amplifier and speaker
Mono and stereo Internet radio with I²S-based amplifiers and speakers
Text-to-speech output with an I²S-based amplifier and speaker
Using the volume control in I²S-based amplifier and speaker systems
A speaking event counter with an I²S-based amplifier and speaker
An adjustable sinewave generator with I²S-based amplifier and speaker
Using the Pmod I²S2 24-bit fast ADC/DAC module
Digital low-pass and band-pass real-time FIR filter design with external and internal A/D and D/A conversion
Digital low-pass and band-pass real-time IIR filter design with external and internal A/D and D/A conversion
Fast Fourier Transforms (FFT)
ANT500 from Great Scott Gadgets is a telescopic antenna designed for operation from 75 MHz to 1 GHz. Its total length is configurable from 20 cm to 88 cm. ANT500 is constructed of stainless steel and features an SMA male connector, rotating shaft, and adjustable elbow. ANT500 is a 50 ohm general purpose antenna. It is the perfect first antenna for use with HackRF One.
Realize your own projects with the Elektor Arduino Nano MCCAB Training Board
The microcontroller is probably the most fascinating subfield of electronics. Due to the multitude of functions, it combines on its chip, it is a universal multi-tool for developers to realize their projects. Practically every device of daily use today is controlled by a microcontroller. However, for an electronic layman, realizing his own ideas with a microcontroller has so far remained a pipe dream due to its complexity. The Arduino concept has largely simplified the use of microcontrollers, so that now even laymen can realize their own electronics ideas with a microcontroller.
Book & Hardware in the Bundle: 'Learning by Doing'
This book, which is included in the bundle, shows how you can realize your own projects with a microcontroller even without much experience in electronics and programming languages. It is a microcontrollers hands-on course for starters, because after an overview of the internals of the microcontroller and an introduction to the programming language C, the focus of the course is on the practical exercises. The reader acquires the necessary knowledge by 'learning by doing': in the extensive practical section with 12 projects and 46 exercises, what is learned in the front part of the book is underpinned with many examples. The exercises are structured in such a way that the user is given a task to solve using the knowledge built up in the theoretical part of the book. Each exercise is followed by a sample solution that is explained and commented on in detail, which helps the user to solve problems and compare it with his own solution.
Arduino IDE
The Arduino IDE is a software development environment that can be downloaded for free to your own PC and that contains the entire software package needed for your own microcontroller projects. You write your programs ('apps') with the IDE’s editor in the C programming language. You translate them into the bits and bytes that the microcontroller understands using the Arduino IDE's built-in compiler, and then load them into the microcontroller's memory on the Elektor Arduino MCCAB Nano Training Board via a USB cable.
Query or control external sensors, motors or assemblies
In addition to an Arduino Nano microcontroller module, the Elektor Arduino Nano MCCAB Training Board contains all the components required for the exercises, 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 MCCAB Training Board
1x Arduino Nano
1x Book: Microcontrollers Hands-on Course for Arduino Starters
The official Raspberry Pi micro HDMI to HDMI (A/M) cable designed for the Raspberry Pi 4 and 5.
19-pin HDMI Type D(M) to 19-pin HDMI Type A(M)
1 m cable (white)
Nickel-plated plugs
4Kp60 compliant
RoHS compliant
3 Mohm 300 VDC insulation, withstands 300 VDC for 0.1s
The Cytron Maker Pi Pico (with Raspberry Pi Pico RP2040 soldered on Board) incorporates the most wanted features for your Raspberry Pi Pico and gives you access to all GPIO pins on two 20 ways pin-headers, with clear labels. Each GPIO is coupled with an LED indicator for convenient code testing and troubleshooting. The bottom layer of this board even comes with a comprehensive pinout diagram showing the function of each pin. Features Work out-of-the-box. No soldering! Access to all Raspberry Pi Pico's pins on two 20 ways pin headers LED indicators on all GPIO pins 3x programmable push button (GP20-22) 1x RGB LED – NeoPixel (GP28) 1x Piezo buzzer (GP18) 1x 3.5 mm stereo audio jack (GP18-19) 1x Micro SD card slot (GP10-15) 1x ESP-01 socket (GP16-17) 6x Grove port Specifications Core 32-bit ARM Cortex-M0+ CPU Clock 48 MHz, up to 133 MHz Flash Size 2 MByte Q-SPI Flash Programming Language MicroPython, C++ Board Power Input 5 VDC via MicroUSB Alternative Board Power 2-5 VDC via VSYS Pin (Pin 39) MCU Voltage 3.3 VDC
GPIO Voltage 3.3 VDC
USB Interface USB 1.1 Device Host Program Loading MicroUSB, USB Mass Storage GPIO 26x Input/Output ADC 3x 12-bit 500 ksps Temperature Sensor Built-in, 12-bit UART 2x UART I²C 2x I²C SPI 2x SPI PWM 16x PWM Timer 1x Timer with 4 x Alarm Real-Time Counter 1x Real Time Counter PIO 2x Programmable High-Speed I/O On-Board LED 1x Programmable LED On-Board Button 1x BOOTSEL Button