Ks0068 keyestudio 37 in 1 Sensor Kit for Arduino Starters

From Keyestudio Wiki
Revision as of 16:40, 25 August 2016 by Keyestudio (talk | contribs) (Created page with "==37 in 1 box for Arduino starters== <br>500px|frameless|thumb<br> Sensor kit for Arduino <br> Based on open-source hardware <br> 37 various sensors in...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

Maker Touch is developed by KEYSTUDIO. Its volume is very small(similar to Arduino Uno). It has a USB interface connected to computer and a alligator clip connected to other objects.
Maker Touch’s meaning lies in using a very simple way to create art by artists. You need neither installing driver nor encoding. If you want to encode, it can also work as Arduino. When connected to bananas, it becomes a banana piano; when connected to plasticine, it becomes a joystick. Besides, you can draw buttons on a piece of paper with a pencil , the paper becomes a controller of a game, Pacman.

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);
}
*******************************************************************************