Arduino Archives | LK-Tronics https://lk-tronics.com/brand/arduino/ Components for the Future Sun, 17 Nov 2024 05:38:14 +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 Archives | LK-Tronics https://lk-tronics.com/brand/arduino/ 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
MEGA 2560 Expansion Development Board V1.0 V2.0 https://lk-tronics.com/product/mega-2560-v1-0-v2-0-expansion-development-board/ https://lk-tronics.com/product/mega-2560-v1-0-v2-0-expansion-development-board/#respond Tue, 08 Aug 2023 16:05:08 +0000 https://lk-tronics.com/?post_type=product&p=12673 LK-Tronics
MEGA 2560 Expansion Development Board V1.0 V2.0

LKMOD00091

MEGA 2560 Expansion Development Board V1.0 V2.0
darazsales

]]>
LK-Tronics
MEGA 2560 Expansion Development Board V1.0 V2.0

MEGA 2560 Expansion Development Board V1.0 V2.0

Description:

MEGA 2560 Expansion Development Board use of Immersion Gold PCB processing technology, the motherboard will not only all the digital and analog interfaces servo extended line order form out, but also ad hoc Bluetooth module communication interface, SD card module communication interface, APC220 radio frequency module communication interface, and RB URF v1 .1 ultrasonic sensor interface, independent of a more extended use convenient. For beginners, not for the cumbersome and complex circuit connection and a headache, and this sensor expansion board truly simplify the circuit can easily be used to connect the sensor, a sensor requires only a general 3P sensor wire (regardless of digital cable and analog cable), complete the circuit connection, the preparation of the corresponding program to the MEGA Arduin controller reads the sensor data, or receive wireless module return data, after arithmetic processing, and ultimately easy to complete your own interactive work.

  • is_customized: Yes
  • Model Number: MW
  • Dissipation Power: 1
  • Supply Voltage: 1
  • Application: Computer
  • Condition: New
  • Type: Voltage Regulator
  • Brand Name: SIMPLE ROBOT
  • Origin: Mainland China

 

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

MEGA 2560 Expansion Development Board MEGA 2560 Expansion Development Board MEGA 2560 Expansion Development Board

MEGA 2560 Expansion Development Board V1.0 V2.0
darazsales

]]>
https://lk-tronics.com/product/mega-2560-v1-0-v2-0-expansion-development-board/feed/ 0 12673
Arduino Explore IoT Kit https://lk-tronics.com/product/buy-arduino-explore-iot-kit/ https://lk-tronics.com/product/buy-arduino-explore-iot-kit/#respond Fri, 30 Sep 2022 03:54:27 +0000 https://lk-tronics.com/?post_type=product&p=10429 LK-Tronics
Arduino Explore IoT Kit

LKDIYKIT00029

Arduino Explore IoT Kit
lahiru Dhananjaya

]]>
LK-Tronics
Arduino Explore IoT Kit

Arduino Explore IoT Kit

Overview

Arduino Explore IoT Kit allows you to build your next smart project. Ever wanted an automated house? Or a smart garden? Well, now it’s easy with the Arduino IoT Cloud compatible boards. It means you can connect devices, visualize data, control and share your projects from anywhere in the world.
The Internet of Things (IoT) is a giant network of connected devices that collect and share data from all over the world, and it’s changing the way we live, work, and study. Learning about the IoT requires students to understand and use different tools, technologies, and programming languages.

The IT skills gap is growing. Topping employers’ list of concerns is a lack of IT skills in emerging technologies, such as the Internet of Things. Learning IoT skills now, using advanced industry- standard technology, tools, and processes, will help students succeed in their future careers. They’ll gain the knowledge they need to tackle the demands of the IT industry – and the more relevant their learning, the more likely they are to secure better, higher-paying jobs.

With the Arduino Explore IoT Kit, you can get advanced high school and college students started with creating connected devices quickly and easily.

Teach students to innovate, investigate, and explore with connected devices that use sensors, automation, protocols, and graphing to collect data they can analyse and learn from.

Create connections, decompose complex problems into simpler parts, allow students to innovate, and enhance their understanding of real-world technology with Arduino Explore IoT Kit

The MKR IoT Carrier- Just connect your device to the computer and you’re ready to go! 

The Arduino Explore IoT Kit includes a MKR IoT Carrier, which was specially developed for this kit.

The MKR IoT Carrier is an extension of your board and it has been thought to help students and teachers  to focus more on prototyping  ideas and programming, and less on the wiring and troubleshooting  by making it easier to build your circuits  using plug-and play connections.

With the Arduino Explore IoT Kit, you can get advanced high school and college students started with creating connected devices quickly and easily.

The activities in the kit teach students to write, deploy, and interact with code through a web- based integrated development environment (IDE) and cloud-based dashboards. Each activity, students gain more tools to design and make their own projects or tweak existing ones.

All the activities adopt a learning-by-doing approach, through which students acquire knowledge step-by-step by constructing fully functional solutions, including experiments, challenges and building meaningful applications. The activities are linked to everyday life, providing students with an invaluable understanding of advanced technology and how it works in the world around them.

CONTENT:

● Access to an online platform with all the content,  information and activities you need to
learn the basics of IoT in one place

● 10 step-by-step hands-on activities, covering the fundamentals of IoT:

○Hardware
○Networking
○Algorithms and programming
○Security
○Data handling

●10 open-ended challenges

●Available in five languages: English, Italian, Spanish, German and Portuguese


Tech specs

The kit includes:

  • Arduino MKR1010
  • MKR IoT Carrier designed for this kit, including:
  1. Two 24 V relays
  2. SD card holder
  3. Five Tactile buttons
  4. Plug and play connectors for different sensors
  5. Temperature sensor
  6. Humidity sensor
  7. Pressure sensor
  8. UV sensor
  9. Accelerometer
  10. RGB 1.20” display
  11. 18650 Li-Ion rechargeable battery holder
  12. Five RGB LEDs
  • Micro USB cable
  • Moisture sensor
  • PIR sensor
  • Plug-and-play cables for all the sensors
  • Access to an online platform with all the content,  information and activities you need to learn the basics of IoT in one place:10 step-by-step hands-on activities, covering the fundamentals of IoT:– Hardware
    – Networking
    – Algorithms and programming
    – Security
    – Data handling10 open-ended challenges 
  • Access to Arduino Cloud, an integrated online platform that enables you to write code, access content, configure boards, and share projects. The Arduino Cloud  includes everything you need to go through the 10 activities in the kit. The Explore IoT Kit comes with a free trial to the Arduino Cloud Maker Plan. With the Arduino Cloud Maker Plan you get access to additional features and increase the productivity of your tools. You will be able to save more sketches, get support for third parties boards and LoRa devices, increase the number of properties, and many more.

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

Arduino Explore IoT Kit
lahiru Dhananjaya

]]>
https://lk-tronics.com/product/buy-arduino-explore-iot-kit/feed/ 0 10429
Grove Starter Kit Plus IOT Edition https://lk-tronics.com/product/grove-starter-kit-plus-iot-edition/ https://lk-tronics.com/product/grove-starter-kit-plus-iot-edition/#respond Thu, 29 Sep 2022 17:15:21 +0000 https://lk-tronics.com/?post_type=product&p=10422 LK-Tronics
Grove Starter Kit Plus IOT Edition

LKDIYKIT00028

Short Info

  • Various sensors and actuators
  • Plug-and-play modules
  • Works on a variety of Arduino-compatible boards
  • Easy 3-Month instalment Available

Grove Starter Kit Plus IOT Edition
lahiru Dhananjaya

]]>
LK-Tronics
Grove Starter Kit Plus IOT Edition

Grove Starter Kit Plus IOT Edition

Overview

This Grove Starter Kit IOT Beyond the Grove Shield is a bunch of Grove sensors and actuators with build-in Grove interfaces, makes your prototyping faster and easier. Simply plug in the modules and you are ready to create.

Features of Grove Starter Kit IOT

  • Various sensors and actuators
  • Plug-and-play modules
  • Works on a variety of Arduino-compatible boards

Part List:

  • Grove- Button 1
  • Grove – Sound Sensor 1
  • Grove – 3-Axis Digital Accelerometer(±1.5g) 1
  • Grove – Touch Sensor 1
  • Grove – Light Sensor 1
  • Grove – Temperature Sensor 1
  • Grove – Rotary Angle Sensor(P) 1
  • Grove – Pieze Vibration Sensor 1
  • Grove – LCD RGB Backlight 1
  • Grove – Buzzer 1
  • Grove – Green LED 1
  • Grove – Blue LED 1
  • Grove – Red LED 1
  • Gear Stepper Motor with Driver 1
  • Grove Base Shield V2 1
  • 12V 2A American Standard AC/DC Power Adaptor 1
  • British Standard Plug Converter 1
  • European Standard Plug Converter 1
  • Australian Standard Plug Converter 1
  • Micro USB Cable 1

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

Grove Starter Kit Plus IOT Edition
lahiru Dhananjaya

]]>
https://lk-tronics.com/product/grove-starter-kit-plus-iot-edition/feed/ 0 10422
Omni Directional Wheel Robot Car 58mm https://lk-tronics.com/product/buy-58mm-omni-directional-wheel-robot-car/ https://lk-tronics.com/product/buy-58mm-omni-directional-wheel-robot-car/#respond Mon, 26 Sep 2022 01:27:39 +0000 https://lk-tronics.com/?post_type=product&p=10377 LK-Tronics
Omni Directional Wheel Robot Car 58mm

LKDIYKIT00027

Short Info

  • Rated Voltage: DC 9V
  • Voltage range: 6-9V
  • Load Speed: 100 RPM

Omni Directional Wheel Robot Car 58mm
lahiru Dhananjaya

]]>
LK-Tronics
Omni Directional Wheel Robot Car 58mm

Omni Directional Wheel Robot Car Chassis 58mm

Features:

The omni-directional movement can be realized by using the omnidirectional wheel technology of the three wheel drive omnidirectional wheel platform. It includes vertical movement and horizontal movement. The main part of the car consists of the motor and the omnidirectional wheel. The double layer triangular platform, free to increase the number of layers, can provide more space, such as controllers, sensors, cameras and other electronic devices. Suitable for user DIY, a very good Omni omnidirectional wheel car learning chassis!

The two package is divided into Holzer encoder and photoelectric encoder. It only has the same speed accuracy. The other parts are exactly the same. They need high accuracy. Please choose the 360 line photoelectric encoder.

In general, you can use the 13 wire Holzer speed measurement. The 360 line and the 13 line are the original speed measurement precision, the output pulse number = the number of the original line * reduction ratio!

 

Product Parameters:

  • DC Mini Metal Gear Motor
  • Rated Voltage: DC 9V
  • Voltage range: 6-9V
  • Load Speed: 100 RPM
  • Output Speed: 150 RPM
  • Shaft Diameter: 0.15 inch
  • Shaft Length: 0.6 inch
  • Fuselage Diameter: 0.98 inch
  • Fuselage Without Shaft Length: 2.7 inch
  • Electricity: 130mA
  • Max Carry Current: 1200mA
  • Locked Rotor Current: 4500mA(max)
  • Blocking torque:9 kg NaN
  • Noise:56dB
  • Material: Metal iron
  • Color: Silver
  • Product Size: 8.5 * 2.5 * 2.5cm
  • Gross Weight: 101g

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

Omni Directional Wheel Robot Car 58mm
lahiru Dhananjaya

]]>
https://lk-tronics.com/product/buy-58mm-omni-directional-wheel-robot-car/feed/ 0 10377
VNH2SP30 Stepper Motor Driver Module 30A https://lk-tronics.com/product/vnh2sp30-stepper-motor-driver-module-30a/ https://lk-tronics.com/product/vnh2sp30-stepper-motor-driver-module-30a/#respond Sat, 09 Jul 2022 13:28:27 +0000 https://lk-tronics.com/?post_type=product&p=9464 LK-Tronics
VNH2SP30 Stepper Motor Driver Module 30A

LKMOD00041

Short Info

  • Voltage max: 16V
  • Maximum current rating: 30 A
  • Practical Continuous Current: 14 A
  • Current sensing available to Arduino analog pin

VNH2SP30 Stepper Motor Driver Module 30A
pearstec.website

]]>
LK-Tronics
VNH2SP30 Stepper Motor Driver Module 30A

VNH2SP30 Stepper Motor Driver Module 30A

A perfect VNH2SP30 Stepper Motor Driver Module 30A for your needs

Description:

This is essentially a ramped-up version of the Ardumoto motor driver shield. For this shield, we’ve replaced the L298 H-bridge with a pair of VNH2SP30 full-bridge motor drivers. We’ve also beefed up the support circuitry so this board is capable of driving a pair of high-current motors! The VIN and motor out are pitched for our 5mm screw terminals (not included), making it easy to connect larger gauge wires.

Note: When using this board in extreme high-demand applications it may be necessary to improve thermal performance with a heat-sink or fan and to solder the wires directly to the board instead of using a screw terminal (in addition to the myriad other complications present in a high-current system) However when using the board at currents up to 6A the chips will barely become noticeably warm.

 

VNH2SP30 Stepper Motor Driver Module 30AFeature:

  • Voltage max: 16V
  • Maximum current rating: 30 A
  • Practical Continuous Current: 14 A
  • Current sensing available to Arduino analog pin
  • MOSFET on-resistance: 19 m (per leg)
  • Maximum PWM frequency: 20 kHz
  • Thermal Shutdown
  • Undervoltage and Overvoltage shutdown

Package include:

1 x VNH2SP30 Stepper Motor Driver Module 30A

Follow us on our Facebook 

VNH2SP30 Stepper Motor Driver Module 30A
pearstec.website

]]>
https://lk-tronics.com/product/vnh2sp30-stepper-motor-driver-module-30a/feed/ 0 9464
ESP32 Development Board 2.4GHz WiFi+Bluetooth 38 Pin https://lk-tronics.com/product/esp32-development-board-2-4ghz/ https://lk-tronics.com/product/esp32-development-board-2-4ghz/#respond Thu, 02 Dec 2021 13:30:32 +0000 https://lk-tronics.com/?post_type=product&p=8030 LK-Tronics
ESP32 Development Board 2.4GHz WiFi+Bluetooth 38 Pin

LKMIC00010

ESP32 Development Board 2.4GHz WiFi+Bluetooth 38 Pin
Ashen Premathilake

]]>
LK-Tronics
ESP32 Development Board 2.4GHz WiFi+Bluetooth 38 Pin

ESP32 Development Board 2.4GHz WiFi+Bluetooth 38 Pin

ESP32 Development Board has already integrated antenna and RF balun, power amplifier, low-noise amplifiers, filters,

and power management module. The entire solution takes up the least amount of printed circuit board area.

This board is used with 2.4 GHz dual-mode Wi-Fi and Bluetooth chips by TSMC 40nm low power technology,

power and RF properties best, which is safe, reliable, and scalable to a variety of applications.

 

Features

  • High performance-price ratio
  • Small volume, easily embedded to other products
  • Strong function with support LWIP protocol, Freertos
  • Supporting three modes: AP, STA, and AP+STA
  • Supporting Lua program, easily to develop

Specifications:

  • Size: 5.8* 2.8* 1.2cm
  • Color: black
  • Model: ESP-32
  • Operating Temperature: -40 ~ +85
  • Supply Voltage: 3.3V

Package Included:

  • 1* ESP-32 Development Board

Use the document download: https://github.com/Nicholas3388/LuaNode

Manual: https://github.com/SmartArduino/SZDOITWiKi/wiki/ESP8266—ESP32

 

ESP32 Development Board

ESP32 Development Board ESP32 Development Board

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

ESP32 Development Board 2.4GHz WiFi+Bluetooth 38 Pin
Ashen Premathilake

]]>
https://lk-tronics.com/product/esp32-development-board-2-4ghz/feed/ 0 8030
Humidity and Temperature DHT11 Module https://lk-tronics.com/product/humidity-and-temperature-dht11/ https://lk-tronics.com/product/humidity-and-temperature-dht11/#respond Thu, 21 Oct 2021 21:10:20 +0000 https://lk-tronics.com/?post_type=product&p=7713 LK-Tronics
Humidity and Temperature DHT11 Module

LKSEN00015

Short Info

  • Power supply voltage: 3.3~5.5V DC
  • Measuring range: 20-90%RH humidity, temperature 0~50°

Humidity and Temperature DHT11 Module
Ashen Premathilake

]]>
LK-Tronics
Humidity and Temperature DHT11 Module

Humidity and Temperature DHT11 Module

This is a very popular, ultra low cost digital temperature and humidity sensor. It uses a capacitive humidity sensor, and a thermistor to measure the surrounding air temperature. The result is available via a digital signal on the data pin (no analog input pins needed). Its fairly simple to use, but requires careful timing to grab data. The only real downside of this sensor is you can only get new data from it once every 2 seconds. But, for most applications this is not an issue at all.

Specifications

  • Power supply voltage: 3.3~5.5V DC
  • Output: the single bus digital signal
  • Measuring range: 20-90%RH humidity, temperature 0~50°
  • The measurement accuracy of +-5%RH: humidity, temperature +-2 °
  • Resolution: 1%RH humidity, temperature 1 °
  • Exchangeability: fully interchangeable,
  • Long term stability: < ± 1%RH/

Package Included:

  • 1 X KEYES KY-015 DHT11 Sensor Module

Humidity and Temperature DHT11 Module Humidity and Temperature DHT11 Module Humidity and Temperature DHT11 Module

Humidity and Temperature DHT11 Module
Ashen Premathilake

]]>
https://lk-tronics.com/product/humidity-and-temperature-dht11/feed/ 0 7713
LCD 2004 Module Display Monitor https://lk-tronics.com/product/lcd-2004-module-display-monitor-iic-i2c/ https://lk-tronics.com/product/lcd-2004-module-display-monitor-iic-i2c/#respond Thu, 21 Oct 2021 20:44:43 +0000 https://lk-tronics.com/?post_type=product&p=7706 LK-Tronics
LCD 2004 Module Display Monitor

LKDIS00005

Short Info

  • Display Format: 20 Characters x 4 lines
  • Supply voltage: 5V

LCD 2004 Module Display Monitor
Ashen Premathilake

]]>
LK-Tronics
LCD 2004 Module Display Monitor

LCD 2004 Module Display Monitor IIC I2C

The LCD 2004 Module Display Monitor is a high-quality display module that offers clear and crisp visuals. With its compact design and easy-to-use interface, this monitor is perfect for a wide range of applications. Featuring a large 20×4 character display, this module is ideal for use in industrial control systems, robotics, and other applications where reliable and accurate display is essential.

  • 2004 204 20X4 Character Blue Backlight.
  • Condition: brand new
  • Blue backlight
  • Fully assembled and tested Serial LCD 20×4 Module
  • Display Format: 20 Characters x 4 lines
  • Supply voltage: 5V
  • The module can be easily interfaced with a MCU
  • The module is a low-power consumption character LCD Module with a built-in controller
  • Size: approx. 9.8cm x 6cm x 1.2cm

Package include

1  X LCD2004  IIC I2C

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


"</a "</a"</a

LCD 2004 Module Display Monitor
Ashen Premathilake

]]>
https://lk-tronics.com/product/lcd-2004-module-display-monitor-iic-i2c/feed/ 0 7706
Liquid Water PH Value Detection Sensor with Module https://lk-tronics.com/product/liquid-water-ph-value-detection-sensor-with-module/ https://lk-tronics.com/product/liquid-water-ph-value-detection-sensor-with-module/#comments Thu, 21 Oct 2021 17:58:52 +0000 https://lk-tronics.com/?post_type=product&p=7689 LK-Tronics
Liquid Water PH Value Detection Sensor with Module

LKSEN00014

Liquid Water PH Value Detection Sensor with Module Best price in Sri Lanka

Liquid Water PH Value Detection Sensor with Module
lahiru Dhananjaya

]]>
LK-Tronics
Liquid Water PH Value Detection Sensor with Module

Liquid Water PH Value Detection Sensor with Module

Introducing our Liquid Water PH Sensor system, designed to accurately measure the PH value of water. This innovative device is easy to use and provides quick and reliable results. With its compact size and durable construction, it is perfect for use in laboratories, industrial settings, and even at home.

Features:

  • Heating voltage: 5 ± 0.2V (AC · DC)
  • Working current: 5-10mA
  • Detectable concentration range: PH0-14
  • Detection Temperature range: 0-80 °
  • Response time: ≤5S
  • Settling Time: ≤60S
  • Component Power: ≤0.5W
  • Working temperature: -10 ~ 50 ° (nominal temperature 20 °)
  • Humidity: 95% RH (nominal humidity 65% RH)
  • Module Size: 42mm × 32mm × 20mm
  • Output: analog voltage signal output
  • With 4pcs M3 Mounting Holes

 

Package included:

  • 1pcs Liquid PH0-14 Value Detect Test Sensor Module
  • 1pcs PH Electrode Probe Hydroponic Sensor BNC Interface

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

Liquid Water PH Value Detection Sensor with Module Liquid Water PH Value Detection Sensor with Module

Liquid Water PH Value Detection Sensor with Module
lahiru Dhananjaya

]]>
https://lk-tronics.com/product/liquid-water-ph-value-detection-sensor-with-module/feed/ 1 7689