Electronics

Keyestudio New sensor kit 37 in 1 box for Arduino KS0068

AED 194.25

Low stock
1

Description

This is keyestudio sensor learning kit. We bring together 37 basic sensors and modules, aiming for the convenient learning for starters. Inside this box, there are digital and analog sensors and also some special modules such as ultrasonic, Bluetooth, acceleration module,etc.
For each module, there is clear connection diagram and sample code. So even if you are totally new at this, you can get started easily.The sample codes for this sensor kit are based on ARDUINO because it's open source and easy to use. If you are good at this, you can also apply this kit to other MCU development platforms, such as 51, STM32, Raspberries Pi. The working principle is pretty much the same.
Now, let us embrace this fascinating world of ARDUINO and learn together!
thumb

Project Details


Project 1: White LED Light


Introduction
This is a white LED module. The main function is to control a plugin LED on and off. When connecting to ARDUINO, after programming, it will emit white light color.
The pin pitch of 3Pin is 2.54mm. This LED module has 3 Pins; - pin is connected to ground, + pin is connected to VCC(3.3-5V), S pin is for signal control; you can set the High or Low level to control the LED on and off.
You can combine with other sensors to do various interactive experiments. You can also choose other LED modules to emit different light color like blue, green, yellow and red.

thumb


Features

  • Control interface: Digital
  • Working voltage: DC 3.3-5V
  • Pin pitch: 2.54mm
  • LED color: white
  • Easy to use
  • Useful for light projects


Connect It Up
Connect the LED module to control board using three jumper wires. Then connect the control board to your PC with a USB cable.

thumb


Upload the Code
Copy and paste below code to Arduino IDE and upload.

int led = 7; 
void setup()
{
  pinMode(led, OUTPUT);     //Set Pin7 as output
}
void loop()
{    digitalWrite(led, HIGH);   //Turn off led
          delay(1000);
          digitalWrite(led, LOW);    //Turn on led
          delay(1000);
}


Test Result
The LED will flash on for one second, then off for one second, repeatedly and alternately.
If it doesn’t, make sure you have assembled the circuit correctly and verified and uploaded the code to your board.

thumb


Project 2: Red LED Light


Introduction
This is a red LED module. The main function is to control a plugin LED on and off. When connecting to ARDUINO, after programming, it will emit red light color.
The pin pitch of 3Pin is 2.54mm. This LED module has 3 Pins; - pin is connected to ground, + pin is connected to VCC(3.3-5V), S pin is for signal control; you can set the High or Low level to control the LED on and off.
You can combine with other sensors to do various interactive experiments.
You can also choose other LED modules to emit different light color like blue, green, yellow and white.

thumb


Features

  • Control interface: Digital
  • Working voltage: DC 3.3-5V
  • Pin pitch: 2.54mm
  • LED color: red
  • Easy to use
  • Useful for light projects


Technical Details

  • Dimensions: 34mm*20mm*11.5mm
  • Weight: 2.7g


Connect It Up
Connect the red LED module to control board using three jumper wires. Then connect the control board to your PC with a USB cable.

thumb


Upload the Code
Copy and paste below code to Arduino IDE and upload.

int led = 7; 
void setup()
{
  pinMode(led, OUTPUT);     //Set Pin7 as output
}
void loop()
{    digitalWrite(led, HIGH);   //Turn off led
          delay(1000);
          digitalWrite(led, LOW);    //Turn on led
          delay(1000);
}


Test Result
The LED will flash on for one second, then off for one second, repeatedly and alternately.
If it doesn’t, make sure you have assembled the circuit correctly and verified and uploaded the code to your board.

thumb


Project 3: 3W LED Module


Introduction
This LED module is of high brightness because the lamp beads it carries is 3W. We can apply this module to Arduino projects.
For example, intelligent robots can use this module for illumination purpose.
Please note that the LED light can't be exposed directly to human eyes for safety concerns.
thumb


Specification

  • Color temperature: 6000~7000K
  • Luminous flux: 180~210lm
  • Current: 700~750mA
  • IO Type: Digital
  • Supply Voltage: 3.3V to 5V
  • Power: 3W
  • Light angle: 140 degree
  • Working temperature: -50~80℃
  • Storage temperature: -50~100℃
  • High power LED module, controlled by IO port microcontroller
  • Great for Robot and search & rescue platform application


Connection Diagram
thumb


Sample Code

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

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


Result
Done wiring and powered up,upload well the code, both D13 led and the led on the module blink for one second then off, circularly.


FOR MORE INFO: LINK