Protect your equipment from ground loops and voltage differences, extending the lifespan of your devices
A
A
Hardware Overview
How does it work?
Opto 5 Click is based on the FOD4216, a random phase snubberless Triac driver that provides uncomplicated high voltage safety isolation from ON Semiconductor. It utilizes a high-efficiency infrared emitting diode that offers an improved trigger sensitivity coupled to a hybrid random phase triac formed with two inverse parallel SCRs, which creates the triac function capable of driving discrete triacs. It provides electrical isolation between a low-voltage input and a high-voltage output while switching the high-voltage output. The Triac stands for triode for alternating current and is a device that can conduct current in either direction when triggered or turned on by
detecting a light beam on its trigger junction (Gate). The Triac changes from the off-state to the conducting state when a current or current pulse is applied to the control electrode (Gate). Turning on the device can be achieved while synchronizing with the input voltage, whereas turn-off occurs when the current passes through zero following the control signal removal. Opto 5 Click operates only with the PWM signal from the mikroBUS™ socket that drives the cathode of the FOD4216. In applications, when hot-line switching is required, the “hot” side of the line is switched, and the load is connected to the cold or neutral side. In the case of a Standard Triac usage, the user should add a
39Ω resistor and 0.01uF capacitor parallel to triac terminals A1 and A2 used for snubbing the triac. In the case of highly inductive loads where the power factor is lower than 0.5), the value of a resistor should be 360Ω. In the case of use Snubberless Triac usage, there is no need for these components. 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
Kinetis Clicker is a compact starter development board that brings the flexibility of add-on Click boards™ to your favorite microcontroller, making it a perfect starter kit for implementing your ideas. It comes with an onboard 32-bit ARM Cortex-M4 microcontroller, the MK22FN512VLH12 from NXP Semiconductor, a USB connector, LED indicators, buttons, a mikroProg connector, and a header for interfacing with external electronics. Thanks to its compact design with clear and easy-recognizable silkscreen markings, it provides a fluid and immersive working experience, allowing access
anywhere and under any circumstances. Each part of the Kinetis Clicker development kit contains the components necessary for the most efficient operation of the same board. In addition to the possibility of choosing the Kinetis Clicker programming method, using USB HID mikroBootloader, or through an external mikroProg connector for Kinetis programmer, the Clicker board also includes a clean and regulated power supply module for the development kit. The USB-MiniAB connection provides up to 500mA of current, which is more than enough to operate all
onboard and additional modules. All communication methods that mikroBUS™ itself supports are on this board, including the well-established mikroBUS™ socket, reset button, and several buttons and LED indicators. Kinetis 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
Architecture
ARM Cortex-M4
MCU Memory (KB)
512
Silicon Vendor
NXP
Pin count
64
RAM (Bytes)
131072
Used MCU Pins
mikroBUS™ mapper
Take a closer look
Schematic
Step by step
Project assembly
Track your results in real time
Application Output via Debug Mode
1. Once the code example is loaded, pressing the "DEBUG" button initiates the build process, programs it on the created setup, and enters Debug mode.
2. After the programming is completed, a header with buttons for various actions within the IDE becomes visible. Clicking the green "PLAY" button starts reading the results achieved with the Click board™. The achieved results are displayed in the Application Output tab.
Software Support
Library Description
This library contains API for Opto 5 Click driver.
Key functions:
opto5_pin_set
- Opto 5 pin setting functionopto5_pin_clear
- Opto 5 pin clearing functionopto5_pin_toggle
- Opto 5 pin toggling function
Open Source
Code example
This example can be found in NECTO Studio. Feel free to download the code, or you can copy the code below.
/*!
* @file main.c
* @brief Opto 5 Click Example.
*
* # Description
* This example demonstrates the use of Opto 5 click board.
*
* The demo application is composed of two sections :
*
* ## Application Init
* Initialization of UART LOG and GPIO pin drivers.
* The output of PWM is set to high so the optocoupler
* is not triggered by default.
*
* ## Application Task
* The output pin is toggled every 5 seconds.
*
* @author Stefan Nikolic
*
*/
#include "board.h"
#include "log.h"
#include "opto5.h"
static opto5_t opto5; /**< Opto 5 Click driver object. */
static log_t logger; /**< Logger object. */
void application_init ( void ) {
log_cfg_t log_cfg; /**< Logger config object. */
opto5_cfg_t opto5_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 );
log_info( &logger, " Application Init " );
// Click initialization.
opto5_cfg_setup( &opto5_cfg );
OPTO5_MAP_MIKROBUS( opto5_cfg, MIKROBUS_1 );
if ( opto5_init( &opto5, &opto5_cfg ) == DIGITAL_OUT_UNSUPPORTED_PIN ) {
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
Delay_ms( 100 );
opto5_default_cfg ( &opto5 );
log_info( &logger, " Application Task " );
Delay_ms( 100 );
}
void application_task ( void ) {
Delay_ms( 5000 );
log_printf( &logger, " Pin toggling...\r\n" );
opto5_pin_toggle( &opto5 );
}
void main ( void ) {
application_init( );
for ( ; ; ) {
application_task( );
}
}
// ------------------------------------------------------------------------ END