Ks0068 keyestudio 37 in 1 Sensor Kit for Arduino Starters: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
Line 14: Line 14:


==2. Kit list==
==2. Kit list==
1: Digital White LED Light Module project
1: Digital White LED Light Module project <br>
2: Piranha LED Light Module
2: Piranha LED Light Module <br>
3: 3W LED Module  
3: 3W LED Module <br>
4: RGB LED module
4: RGB LED module <br>
5: Analog temperature sensor
5: Analog temperature sensor <br>
6: Photocell sensor
6: Photocell sensor <br>
7: Analog Sound Sensor
7: Analog Sound Sensor <br>
8: Analog Rotation Sensor
8: Analog Rotation Sensor <br>
9: Passive Buzzer module
9: Passive Buzzer module <br>
10: Digital Buzzer Module
10: Digital Buzzer Module <br>
11: Digital Push Button
11: Digital Push Button <br>
12: Digital Tilt Sensor
12: Digital Tilt Sensor <br>
13: photo interrupter module
13: photo interrupter module <br>
14. Capacitive Touch Sensor
14. Capacitive Touch Sensor <br>
15: Knock Sensor Module
15: Knock Sensor Module <br>
16: Hall Magnetic Sensor
16: Hall Magnetic Sensor <br>
17: Line Tracking Sensor
17: Line Tracking Sensor <br>
18: Infrared Obstacle Avoidance Sensor
18: Infrared Obstacle Avoidance Sensor <br>
19: PIR Motion Sensor
19: PIR Motion Sensor <br>
20: Flame Sensor
20: Flame Sensor <br>
21: Vibration Sensor
21: Vibration Sensor <br>
22: Analog Gas Sensor
22: Analog Gas Sensor <br>
23: Analog Alcohol Sensor
23: Analog Alcohol Sensor <br>
24: Digital IR Transmitter Module
24: Digital IR Transmitter Module <br>
25: Digital IR Receiver Module  
25: Digital IR Receiver Module <br>
26: Rotary Encoder module
26: Rotary Encoder module <br>
27: LM35 Temperature Sensor
27: LM35 Temperature Sensor <br>
28: 18B20 Temperature Sensor
28: 18B20 Temperature Sensor <br>
29: ADXL345 Three Axis Acceleration Module  
29: ADXL345 Three Axis Acceleration Module <br>
30: DHT11 Temperature and Humidity Sensor  
30: DHT11 Temperature and Humidity Sensor <br>
31: Bluetooth Module
31: Bluetooth Module <br>
32: TEMT6000 ambient light sensor
32: TEMT6000 ambient light sensor <br>
33: Keyestudio SR01 Ultrasonic Sensor  
33: Keyestudio SR01 Ultrasonic Sensor <br>
34: Joystick Module
34: Joystick Module <br>
35: DS3231 Clock Module
35: DS3231 Clock Module <br>
36: 5V Relay Module
36: 5V Relay Module <br>
37: Vapor Sensor
37: Vapor Sensor <br>


==3. Project Details ==
==3. Project Details ==

Revision as of 16:44, 25 August 2016

37 in 1 box for Arduino starters


thumb
Sensor kit for Arduino
Based on open-source hardware
37 various sensors in one box
For you to make interesting projects

1. Summary

This is an Arduino sensor learning kit developed by Keyestudio. We bring together 36 basic sensors and modules, aiming for the convenience of its learning for starters. Inside this box, there are digital and analog sensors and also some special modules such as ultrasonic, bluetooth,, acceleration modules 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. And if you are good at this, you can also apply this kit to other MCU development platform, 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

2. Kit list

1: Digital White LED Light Module project
2: Piranha LED Light Module
3: 3W LED Module
4: RGB LED module
5: Analog temperature sensor
6: Photocell sensor
7: Analog Sound Sensor
8: Analog Rotation Sensor
9: Passive Buzzer module
10: Digital Buzzer Module
11: Digital Push Button
12: Digital Tilt Sensor
13: photo interrupter module
14. Capacitive Touch Sensor
15: Knock Sensor Module
16: Hall Magnetic Sensor
17: Line Tracking Sensor
18: Infrared Obstacle Avoidance Sensor
19: PIR Motion Sensor
20: Flame Sensor
21: Vibration Sensor
22: Analog Gas Sensor
23: Analog Alcohol Sensor
24: Digital IR Transmitter Module
25: Digital IR Receiver Module
26: Rotary Encoder module
27: LM35 Temperature Sensor
28: 18B20 Temperature Sensor
29: ADXL345 Three Axis Acceleration Module
30: DHT11 Temperature and Humidity Sensor
31: Bluetooth Module
32: TEMT6000 ambient light sensor
33: Keyestudio SR01 Ultrasonic Sensor
34: Joystick Module
35: DS3231 Clock Module
36: 5V Relay Module
37: Vapor Sensor

3. Project Details

Project 1: LED Light Module


thumb

Introduction:
This LED light module has a shiny color, ideal for Arduino starters. It can be easily connected to IO/Sensor shield.

Specification:

  • Type: Digital
  • PH2.54 socket
  • White LED light module
  • Enables interaction with light-related works
  • Size: 30*20mm
  • Weight: 3g

Connection Diagram:

thumb

Sample Code:

*****************************************************************************
int led = 3;
 void setup()
{
  pinMode(led, OUTPUT);     //Set Pin3 as output
}
void loop()
{
          digitalWrite(led, HIGH);   //Turn on led
          delay(2000);
          digitalWrite(led, LOW);    //Turn off led
          delay(2000);
}
*******************************************************************************