Our DAC solution empowers data to transcend the digital realm, converting it into actionable analog outputs and fostering effective communication and control across many applications
A
A
Hardware Overview
How does it work?
DAC 10 Click is based on the DAC53401, a 10-bit voltage-output smart digital-to-analog converter from Texas Instruments. This device consumes extremely low power and has a nonvolatile memory (NVM), an internal reference, and an I2C serial interface. It also has a power-on-reset circuit that ensures all the registers start with default or user-programmed settings using NVM. It operates with either an internal reference or the power supply as a reference and provides full-scale output from 0V to 5.5V. The DAC53401 includes digital slew rate control and supports basic signal generation such as square, ramp, and sawtooth waveforms. It also can generate pulse-width modulation (PWM) output with the
combination of the triangular or sawtooth waveform and the VFB terminal. The DAC53401 is also called a smart DAC device because of its advanced integrated features. This smart DAC's force-sense output, PWM output, and NVM capabilities enable system performance and control without using the software. These features allow DAC53401 to go beyond a conventional DAC's limitations that depend on a processor to function. DAC 10 Click communicates with MCU using the standard I2C 2-Wire interface to read data and configure settings, supporting Standard Mode operation with a clock frequency up to 100kHz, Fast Mode up to 400kHz, and Fast Mode Plus up to 1MHz. Besides, it also allows the
choice of the three least significant bits of its I2C slave address by positioning the SMD jumper labeled as ADDR SEL to an appropriate position marked as 0, 1, SCL, and SDA, providing the user with a choice of 4 I2C Slave addresses. This Click board™ can operate with either 3.3V or 5V logic voltage levels selected via the VCC SEL jumper. This way, both 3.3V and 5V capable MCUs can use the communication lines properly. Also, this Click board™ comes equipped with a library containing easy-to-use functions and an example code that can be used, as a reference, for further development.
Features overview
Development board
UNI Clicker is a compact development board designed as a complete solution that brings the flexibility of add-on Click boards™ to your favorite microcontroller, making it a perfect starter kit for implementing your ideas. It supports a wide range of microcontrollers, such as different ARM, PIC32, dsPIC, PIC, and AVR from various vendors like Microchip, ST, NXP, and TI (regardless of their number of pins), four mikroBUS™ sockets for Click board™ connectivity, a USB connector, LED indicators, buttons, a debugger/programmer connector, and two 26-pin headers for interfacing with external electronics. Thanks to innovative manufacturing technology, it allows you to build
gadgets with unique functionalities and features quickly. Each part of the UNI Clicker development kit contains the components necessary for the most efficient operation of the same board. In addition to the possibility of choosing the UNI Clicker programming method, using a third-party programmer or CODEGRIP/mikroProg connected to onboard JTAG/SWD header, the UNI Clicker board also includes a clean and regulated power supply module for the development kit. It provides two ways of board-powering; through the USB Type-C (USB-C) connector, where onboard voltage regulators provide the appropriate voltage levels to each component on the board, or using a Li-Po/Li
Ion battery via an onboard battery connector. All communication methods that mikroBUS™ itself supports are on this board (plus USB HOST/DEVICE), including the well-established mikroBUS™ socket, a standardized socket for the MCU card (SiBRAIN standard), and several user-configurable buttons and LED indicators. UNI Clicker is an integral part of the Mikroe ecosystem, allowing you to create a new application in minutes. Natively supported by Mikroe software tools, it covers many aspects of prototyping thanks to a considerable number of different Click boards™ (over a thousand boards), the number of which is growing every day.
Microcontroller Overview
MCU Card / MCU

Type
8th Generation
Architecture
PIC
MCU Memory (KB)
128
Silicon Vendor
Microchip
Pin count
48
RAM (Bytes)
8196
Used MCU Pins
mikroBUS™ mapper
Take a closer look
Click board™ Schematic

Step by step
Project assembly
Track your results in real time
Application Output
This Click board can be interfaced and monitored in two ways:
Application Output
- Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
UART Terminal
- Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.
Software Support
Library Description
This library contains API for DAC 10 Click driver.
Key functions:
dac10_check_device_id
- This function checks the communication by reading and verifying the device IDdac10_enable_dac
- This function enables the DAC outputdac10_set_output_voltage
- This function sets the output voltage depending on the vref value
Open Source
Code example
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.
/*!
* @file main.c
* @brief DAC10 Click example
*
* # Description
* This example demonstrates the use of DAC 10 click board.
*
* The demo application is composed of two sections :
*
* ## Application Init
* Initializes the driver, checks the communication by reading and verifying the device ID,
* and enables the DAC output.
*
* ## Application Task
* Changes the output voltage every 2 seconds and logs the voltage value on the USB UART.
* It will go through the entire voltage range taking into account the number of steps
* which is defined below.
*
* @note
* Measure the voltage at VCC_SEL jumper and adjust the reference voltage value below for better accuracy.
*
* @author Stefan Filipovic
*
*/
#include "board.h"
#include "log.h"
#include "dac10.h"
#define REFERENCE_VOLTAGE 3.3 // The reference voltage defined by the VCC_SEL on-board jumper.
#define NUMBER_OF_STEPS 20 // The number of steps by which we will divide the entire voltage range.
static dac10_t dac10;
static log_t logger;
void application_init ( void )
{
log_cfg_t log_cfg; /**< Logger config object. */
dac10_cfg_t dac10_cfg; /**< Click config object. */
/**
* Logger initialization.
* Default baud rate: 115200
* Default log level: LOG_LEVEL_DEBUG
* @note If USB_UART_RX and USB_UART_TX
* are defined as HAL_PIN_NC, you will
* need to define them manually for log to work.
* See @b LOG_MAP_USB_UART macro definition for detailed explanation.
*/
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
Delay_ms( 100 );
log_info( &logger, " Application Init " );
// Click initialization.
dac10_cfg_setup( &dac10_cfg );
DAC10_MAP_MIKROBUS( dac10_cfg, MIKROBUS_1 );
err_t init_flag = dac10_init( &dac10, &dac10_cfg );
if ( I2C_MASTER_ERROR == init_flag )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
if ( DAC10_ERROR == dac10_check_device_id ( &dac10 ) )
{
log_error( &logger, " Check Device ID Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
dac10_enable_dac( &dac10 );
Delay_ms( 100 );
log_info( &logger, " Application Task " );
}
void application_task ( void )
{
float step = REFERENCE_VOLTAGE / NUMBER_OF_STEPS;
float output_voltage = step;
uint8_t cnt = 0;
while ( cnt < NUMBER_OF_STEPS )
{
dac10_set_output_voltage ( &dac10, REFERENCE_VOLTAGE, output_voltage );
log_printf( &logger, " DAC output voltage set to %.2f V\r\n", output_voltage );
output_voltage += step;
cnt++;
Delay_ms( 2000 );
}
}
void main ( void )
{
application_init( );
for ( ; ; )
{
application_task( );
}
}
// ------------------------------------------------------------------------ END