arduino uno price in sri lanka | LK-Tronics https://lk-tronics.com/product-tag/arduino-uno-price-in-sri-lanka/ Components for the Future Mon, 18 Nov 2024 13:28:33 +0000 en-US hourly 1 https://wordpress.org/?v=6.7 https://i0.wp.com/lk-tronics.com/wp-content/uploads/2023/11/cropped-Main-Logo-lktronics-2023-512-x-512-px-1.png?fit=32%2C32&ssl=1 arduino uno price in sri lanka | LK-Tronics https://lk-tronics.com/product-tag/arduino-uno-price-in-sri-lanka/ 32 32 153475254 Arduino Uno Rev3 ATMega328p Development Board [without Logo / without Cable] https://lk-tronics.com/product/arduino-uno-rev3-atmega328p-development-board-without-logo-without-cable/ https://lk-tronics.com/product/arduino-uno-rev3-atmega328p-development-board-without-logo-without-cable/#respond Mon, 29 Apr 2024 04:29:00 +0000 https://lk-tronics.com/?post_type=product&p=15959 LK-Tronics
Arduino Uno Rev3 ATMega328p Development Board [without Logo / without Cable]

LKMIC00033

Arduino Uno Rev3 ATMega328p Development Board [without Logo / without Cable]
darazsales

]]>
LK-Tronics
Arduino Uno Rev3 ATMega328p Development Board [without Logo / without Cable]

Arduino Uno Rev3 ATMega328p Development Board [without Logo / without Cable]

ARDUINO UNO ATmega 328P

The 14 digital input/output pins in Arduino Uno ATmega 328P can used as input or output pins by using pinMode(), digitalRead(), and digital Write () functions in Arduino programming.

Each pin operates at 5V can provide or receive a maximum of 40mA current and has an internal pull-up resistor of 20-50 KOhms which are disconnected by default. Buy Arduino Uno ATmega 328P

How to use Arduino Board

Out of these 14 pins, some pins have specific functions as listed below, you can find the Pin Description in Arduino Uno

  • Serial Pins 0 (Rx) and 1 (Tx): Rx and Tx pins are used to receive and transmit TTL serial data. They are connected with the corresponding ATmega328P USB to the TTL serial chip.
  • External Interrupt Pins 2 and 3: These pins can be configured to trigger an interrupt on a low value, a rising or falling edge, or a change in value.
  • PWM Pins 3, 5, 6, 9, and 11: These pins provide an 8-bit PWM output by using the analog Write() function.
  • SPI Pins 10 (SS), 11 (MOSI), 12 (MISO), and 13 (SCK): These pins are used for SPI communication.
  • In-built LED Pin 13: This pin is connected with a built-in LED, and pin 13 is HIGH–the LED is on and pin 13 is LOW, it’s off.
  • Analog pin 4 (SDA) and pin 5 (SCA) are used for TWI communication using the Wire library.

Arduino Uno has a couple of other pins as explained below:

  • AREF: Used to provide a reference voltage for analog inputs with analogReference() function.
  • Reset Pin: Making this pin LOW, resets the microcontroller.

Pin Description in Arduino Uno ATmega 328P

Refer to the below table for the Pin Description in Arduino Uno. Any problems? direct message us

Pin Category Pin Name Details
Power Vin, 3.3V, 5V, GND using an external power source.

5V: Regulated power supply used to power the microcontroller and other components on the board.

3.3V: 3.3V supply generated by on-board voltage regulator. Maximum current draw is 50mA.

GND: ground pins.

Reset Reset Resets the microcontroller.
Analog Pins A0 – A5 Used to provide analog input in the range of 0-5V
Input/output Pins Digital Pins 0 – 13 Can be used as input or output pins.
Serial 0(Rx), 1(Tx) Used to receive and transmit TTL serial data.
External Interrupts 2, 3 To trigger an interrupt.
PWM 3, 5, 6, 9, 11 Provides 8-bit PWM output.
SPI 10 (SS), 11 (MOSI), 12 (MISO) and 13 (SCK) Used for SPI communication.
Inbuilt LED 13 To turn on the inbuilt LED.
TWI A4 (SDA), and A5 (SCA) are Used for TWI communication.
AREF AREF To provide a reference voltage for input voltage.

Arduino Uno Technical Specifications

Microcontroller ATmega328P – 8-bit AVR family microcontroller
Operating Voltage 5V
Recommended Input Voltage 7-12V
Input Voltage Limits 6-20V
Analog Input Pins 6 (A0 – A5)
Digital I/O Pins 14 (Out of which 6 provide PWM output)
DC Current on I/O Pins 40 mA
DC Current on 3.3V Pin 50 mA
Flash Memory 32 KB (0.5 KB is used for the Bootloader)
SRAM 2 KB
EEPROM 1 KB
Frequency (Clock Speed) 16 MHz

Arduino Communication 

A computer, an additional Arduino board, and other microcontrollers can all connect with Arduino. The ATmega328P microcontroller provides UART TTL (5V) serial communication which can do using digital pin 0 (Rx) and digital pin 1 (Tx). An ATmega16U2 on the board channels this serial communication over USB and appears as a virtual COM port to software on the computer. The ATmega16U2 firmware uses the standard USB COM drivers, and no external driver is needed. on Windows, a .inf file is required.

The Arduino software

The Arduino software includes a serial monitor that allows simple textual data to send to and from the Arduino board. There are two RX and TX LEDs on the Arduino board which will flash after data is being transmitted via the USB-to-serial chip and USB connection to the computer (not for serial communication on pins 0 and 1). A Software Serial library allows for serial communication on any of Uno’s digital pins. The ATmega328P supports I2C (TWI) and SPI communication. The Arduino software includes a Wire library to simplify the use of the I2C bus. Buy Arduino uno Sri Lanka to make your work easy.

 

ARDUINO UNO Pinout

The pin mapping between the Arduino Uno and ATmega328 chip

Arduino Uno ATmega328P Pin Mapping

Software

Arduino IDE (Integrated Development Environment) requires programming the Arduino Uno board. Download it here.

Programming Arduino

Arduino IDE is installed on the computer, connect the board to the computer using a USB cable. Now open the Arduino IDE and choose the correct board by selecting>Tools>Boards>Arduino/Genuine Uno. choose the correct Port by selecting Tools>Port. Arduino Uno is a program using Arduino programming language based on Wiring. To get it to start with the Arduino Uno board and blink the built-in LED, load the example code by selecting Files>Examples>Basics>Blink. In this example code is loaded into your IDE, click on the ‘upload’ button given on the top bar. After the upload is finished, you should see the Arduino’s built-in LED blinking.  Below is the example code for blinking:

//The setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

//The, loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

 

Applications

  • Prototyping of Electronics Products and Systems
  • Multiple DIY Projects.
  • Easy to use for beginner-level DIYers and makers.
  • Projects requiring Multiple I/O interfaces and communications.

Arduino Uno Rev3 ATMega328p Development Board [without Logo / without Cable]
darazsales

]]>
https://lk-tronics.com/product/arduino-uno-rev3-atmega328p-development-board-without-logo-without-cable/feed/ 0 15959
STM32L073RZ Nucleo-64 Development board with Program Cable https://lk-tronics.com/product/stm32l073rz-nucleo-64-development-board/ https://lk-tronics.com/product/stm32l073rz-nucleo-64-development-board/#respond Fri, 28 Oct 2022 23:54:24 +0000 https://lk-tronics.com/?post_type=product&p=10663 LK-Tronics
STM32L073RZ Nucleo-64 Development board with Program Cable

LKMIC00018

STM32L073RZ Nucleo-64 Development board with Program Cable
lahiru Dhananjaya

]]>
LK-Tronics
STM32L073RZ Nucleo-64 Development board with Program Cable

STM32L073RZ Nucleo-64 Development board with Program Cable

Description

STM32L073RZ Nucleo-64 Development board provides an affordable and flexible way for users to try out new concepts and build prototypes by choosing from the various combinations of performance and power consumption features, provided by the STM32 microcontroller. For the compatible boards, the external SMPS significantly reduces power consumption in Run mode.

The ARDUINO® Uno V3 connectivity support and the ST morpho headers allow the easy expansion of the functionality of the STM32 Nucleo open development platform with a wide choice of specialized shields.

The STM32L073RZ Nucleo-64 board does not require any separate probe as it integrates the ST-LINK debugger/programmer.

The STM32L073RZ Nucleo-64 board comes with the STM32 comprehensive free software libraries and examples available with the STM32Cube MCU Package.

Key Features

    • Common features
      • STM32L073RZ microcontroller in LQFP64 or LQFP48 package
      • 1 user LED shared with ARDUINO®
      • STM32L073RZ MCU
      • 1 user and 1 reset push-buttons
      • 32.768 kHz crystal oscillator
      • Board connectors:
        • ARDUINO® Uno V3 expansion connector
        • ST morpho extension pin headers for full access to all STM32 I/Os
      • Flexible power-supply options: ST-LINK USB VBUS or external sources
      • On-board ST-LINK debugger/programmer with USB re-enumeration capability: mass storage, Virtual COM port, and debug port
      • Comprehensive free software libraries and examples available with the STM32Cube MCU Package
      • Support of a wide choice of Integrated Development Environments (IDEs) including IAR Embedded Workbench®, MDK-ARM, and STM32CubeIDE
    • Board-specific features
      • External SMPS to generate Vcore logic supply
      • 24 MHz or 48 MHz HSE
      • Board connectors:
        • External SMPS experimentation dedicated connector
        • Micro-B or Mini-B USB connector for the ST-LINK
        • MIPI® debug connector

VISIT OUR FACEBOOK PAGE FOR MORE INFO | MORE PRODUCT IN OUR SHOP


What’s Onboard

NUCLEO Board NUCLEO Board


Dimensions

NUCLEO Board

STM32L073RZ Nucleo-64 Development board with Program Cable
lahiru Dhananjaya

]]>
https://lk-tronics.com/product/stm32l073rz-nucleo-64-development-board/feed/ 0 10663
Arduino Uno ATmega 328P https://lk-tronics.com/product/arduino-uno-atmega-328p/ https://lk-tronics.com/product/arduino-uno-atmega-328p/#comments Mon, 04 May 2020 11:09:55 +0000 http://lk-tronics.com/?post_type=product&p=4756 LK-Tronics
Arduino Uno ATmega 328P

LKMIC00005

Buy ARDUINO UNO ATmega 328P in Sri Lanka for the lowest price with high quality. Each and every item has its limited warranty.

Special Notice :

  • INCLUDES USB CABLE

Arduino Uno ATmega 328P
pearstec.website

]]>
LK-Tronics
Arduino Uno ATmega 328P

ARDUINO UNO ATmega 328P

The 14 digital input/output pins in Arduino Uno ATmega 328P can used as input or output pins by using pinMode(), digitalRead(), and digital Write () functions in Arduino programming.

Each pin operates at 5V can provide or receive a maximum of 40mA current and has an internal pull-up resistor of 20-50 KOhms which are disconnect by default. Buy Arduino Uno ATmega 328P

How to use Arduino Board

Out of these 14 pins, some pins have specific functions as listed below, you can find the Pin Description in Arduino Uno

  • Serial Pins 0 (Rx) and 1 (Tx): Rx and Tx pins are using to receive and transmit TTL serial data. They are connected with the corresponding ATmega328P USB to the TTL serial chip.
  • External Interrupt Pins 2 and 3: These pins can configure to trigger an interrupt on a low value, a rising or falling edge, or a change in value.
  • PWM Pins 3, 5, 6, 9, and 11: These pins provide an 8-bit PWM output by using the analog Write() function.
  • SPI Pins 10 (SS), 11 (MOSI), 12 (MISO) and 13 (SCK): These pins are used for SPI communication.
  • In-built LED Pin 13: This pin is connected with a built-in LED, and pin 13 is HIGH–the LED is on and pin 13 is LOW, it’s off.
  • Analog pin 4 (SDA) and pin 5 (SCA) are used for TWI communication using the Wire library.

Arduino Uno has a couple of other pins as explained below:

  • AREF: Used to provide a reference voltage for analog inputs with analogReference() function.
  • Reset Pin: Making this pin LOW, resets the microcontroller.

Pin Description in Arduino Uno ATmega 328P

Refer to the below table for the Pin Description in Arduino Uno. Any problems? direct message us

Pin Category Pin Name Details
Power Vin, 3.3V, 5V, GND using an external power source.

5V: Regulated power supply used to power the microcontroller and other components on the board.

3.3V: 3.3V supply generated by on-board voltage regulator. Maximum current draw is 50mA.

GND: ground pins.

Reset Reset Resets the microcontroller.
Analog Pins A0 – A5 Used to provide analog input in the range of 0-5V
Input/output Pins Digital Pins 0 – 13 Can be used as input or output pins.
Serial 0(Rx), 1(Tx) Used to receive and transmit TTL serial data.
External Interrupts 2, 3 To trigger an interrupt.
PWM 3, 5, 6, 9, 11 Provides 8-bit PWM output.
SPI 10 (SS), 11 (MOSI), 12 (MISO) and 13 (SCK) Used for SPI communication.
Inbuilt LED 13 To turn on the inbuilt LED.
TWI A4 (SDA), and A5 (SCA) are Used for TWI communication.
AREF AREF To provide reference voltage for input voltage.

Arduino Uno Technical Specifications

Microcontroller ATmega328P – 8-bit AVR family microcontroller
Operating Voltage 5V
Recommended Input Voltage 7-12V
Input Voltage Limits 6-20V
Analog Input Pins 6 (A0 – A5)
Digital I/O Pins 14 (Out of which 6 provide PWM output)
DC Current on I/O Pins 40 mA
DC Current on 3.3V Pin 50 mA
Flash Memory 32 KB (0.5 KB is used for Bootloader)
SRAM 2 KB
EEPROM 1 KB
Frequency (Clock Speed) 16 MHz

Arduino Communication 

A computer, an additional Arduino board, and other microcontrollers can all connect with Arduino. The ATmega328P microcontroller provides UART TTL (5V) serial communication which can do using digital pin 0 (Rx) and digital pin 1 (Tx). An ATmega16U2 on the board channels this serial communication over USB and appears as a virtual COM port to software on the computer. The ATmega16U2 firmware uses the standard USB COM drivers, and no external driver is need. on Windows, a .inf file is require.

The Arduino software

The Arduino software includes a serial monitor that allows simple textual data to send to and from the Arduino board. There are two RX and TX LEDs on the Arduino board which will flash, after data is being transmit via the USB-to-serial chip and USB connection to the computer (not for serial communication on pins 0 and 1). A Software Serial library allows for serial communication on any of Uno’s digital pins. The ATmega328P supports I2C (TWI) and SPI communication. The Arduino software includes a Wire library to simplify the use of the I2C bus. Buy Arduino uno Sri Lanka to make your work easy.

 

ARDUINO UNO ATmega 328P Pin Mapping

The pin mapping between the Arduino Uno and ATmega328 chip

Arduino Uno ATmega328P Pin Mapping

Software

Arduino IDE (Integrated Development Environment) is requiring programming the Arduino Uno board. Download it here.

Programming Arduino

Arduino IDE is install on the computer, connect the board to the computer using a USB cable. Now open the Arduino IDE and choose the correct board by selecting>Tools>Boards>Arduino/Genuine Uno. choose the correct Port by selecting Tools>Port. Arduino Uno is the program using Arduino programming language based on Wiring. To get it start with the Arduino Uno board and blink the built-in LED, load the example code by selecting Files>Examples>Basics>Blink. in this example code is load into your IDE, click on the ‘upload’ button given on the top bar. After the upload is finish, you should see the Arduino’s built-in LED blinking.  Below is the example code for blinking:

//The setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

//The, loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

 

Applications

  • Prototyping of Electronics Products and Systems
  • Multiple DIY Projects.
  • Easy to use for beginner-level DIYers and makers.
  • Projects requiring Multiple I/O interfaces and communications.

Download the Data Sheet – Click Here

 

Arduino Uno Compatible Board

Arduino Nano Controller ATmega328P

Special Notice :

  • INCLUDE USB CABLE

 

Arduino UNO ATmega 328P

Arduino Uno ATmega 328P
pearstec.website

]]>
https://lk-tronics.com/product/arduino-uno-atmega-328p/feed/ 3 4756
Arduino Uno Compatible Board https://lk-tronics.com/product/arduino-uno-compatible-board-smd-version/ https://lk-tronics.com/product/arduino-uno-compatible-board-smd-version/#comments Thu, 25 Oct 2018 09:40:10 +0000 http://lk-tronics.com/?post_type=product&p=172 LK-Tronics
Arduino Uno Compatible Board

LKMIC00002

Comes with free USB cable with sealed static free package.

Arduino Uno Compatible Board
Ashen Premathilake

]]>
LK-Tronics
Arduino Uno Compatible Board

Arduino Uno Compatible Board SMD Version ATmega328P

The Arduino Uno Compatible Board SMD Version ATmega328P is a versatile and user-friendly microcontroller board that is fully compatible with the Arduino Uno. It offers a wide range of features and functionalities, making it ideal for both beginners and experienced users. With its compact size and easy-to-use interface, this board allows for seamless integration with various electronic components and sensors. It also supports a wide range of programming languages, making it suitable for a diverse range of projects. Whether you are a hobbyist or a professional, this is a reliable and efficient choice for all your microcontroller needs.

Same as Arduino Uno specifications only difference is it consists of Arduino Uno SMD version type IC, which cannot replace easily.

  • Microcontroller: ATmega328P
  • Operating Voltage: 5V
  • Input Voltage (recommended): 7-12V
  • Input Voltage (limit): 6-20V
  • Digital I/O Pins: 14 (of which 6 provide PWM output)
  • PWM Digital I/O Pins: 6
  • Analog Input Pins: 6
  • DC Current per I/O Pin: 20 mA
  • DC Current for 3.3V Pin: 50 mA
  • Flash Memory: 32 KB (ATmega328P) of which 0.5 KB is used by the bootloader
  • SRAM: 2 KB (ATmega328P)
  • EEPROM: 1 KB (ATmega328P)
  • Clock Speed: 16 MHz
  • LED_BUILTIN: 13
  • Length: 68.6 mm
  • Width: 53.4 mm
  • Weight: 25 g

VISIT OUR FACEBOOK PAGE FOR MORE INFO | MORE PRODUCT IN OUR SHOP

If You are interested in Arduino UNO Original Bord – ARDUINO UNO ATmega 328P | LK-Tronics | Free Cable

Arduino Uno Compatible Board
Ashen Premathilake

]]>
https://lk-tronics.com/product/arduino-uno-compatible-board-smd-version/feed/ 1 172