Ks0106 keyestudio EASY plug Photocell Sensor: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
(Created page with "==EASY plug Photocell Sensor == <br>500px|frameless|thumb<br> ==Introduction== Photocell is commonly seen in our daily life and is mainly used in intell...")
 
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
==EASY plug Photocell Sensor ==
[[image:Ks0106.png|thumb|600px|right|EASY plug Photocell Sensor]]
<br>[[File:ks0106-1.png|500px|frameless|thumb]]<br>


==Introduction==
==Introduction==
Photocell is commonly seen in our daily life and is mainly used in intelligent switch, also in common electronic design. To make it easier and more effective, we supply corresponding modules.<br>
A photoresistor or light-dependent resistor (LDR) or photocell is a light-controlled variable resistor. The principal is very simple.
Photocell is a semiconductor. It has features of high sensitivity, quick response, spectral characteristic, and R-value consistence, maintaining high stability and reliability in environment extremes such as high temperature, high humidity. It’s widely used in automatic control switch fields like cameras, garden solar lights, lawn lamps, money detectors, quartz clocks, music cups, gift boxes, mini night lights, sound and light control switches, etc.<br>
The resistance of photoresistor varies with incident light intensity. If the incident light intensity is high, the resistance decreases; if the light intensity is low, the resistance increases.<br>
Note: this module needs to be used together with EASY plug control board.<br>
keyestudio EASY Plug photocell sensor is a semiconductor, integrated with a photoresistor, easy to use and very convenient for wiring. <br>
It has features of high sensitivity, quick response, spectral characteristic and R-value consistence.<br>
It can be applied in light-sensitive detector circuits, intelligent switch design and light- and dark-activated switching circuits. <br>
This module should be used together with EASY plug control board.<br>


<span style=color:red> '''Special Note:''' <br>
The sensor/module is equipped with the RJ11 6P6C interface, compatible with our keyestudio EASY plug Control Board with RJ11 6P6C interface. <br> If you have the control board of other brands, it is also equipped with the RJ11 6P6C interface but has different internal line sequence, can’t be used compatibly with our sensor/module. </span><br>
<br>


==Specification==
==Specification==
* Interface: Easy plug
*Interface: Easy plug
* Sensor type: analog
*Sensor type: analog
* Working voltage: 5V
*Working voltage: 5V
* Size: 38*20mm
*Quick response
* Weight: 5g
 
<br>
==Technical Details==
* Dimensions: 38mm*20mm*18mm
* Weight: 4.3g
<br>
 
==Connect It Up ==
Connect the EASY Plug photocell sensor to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
<br>[[File:Ks0106-1-.png|700px|frameless|thumb]]<br>
<br>
 
==Upload the Code==
Below is an example code. Open or drag below code to [https://wiki.keyestudio.com/Getting_Started_with_Mixly  Mixly Blocks] and upload. <br>
<br>[[File:ks0398 4.1.png|600px|frameless|thumb]]<br>
 
<br>
==What You Should See==
<br>[[File:ks0398 4-1.png|600px|frameless|thumb]]<br>
<br>
Done uploading the code, you should see the analog value change in accordance with how much light your photoresistor is sensing.
<br>[[File:ks0398 4-2.png|600px|frameless|thumb]]<br>
 
<br>
 
==Controlling light brightness==
 
'''Hookup Guide'''<br>
Connect the EASY Plug photocell sensor and LED module to control board using RJ11 cable.
<br>[[File:光敏灯.jpg|600px|frameless|thumb]]<br>
 
<br>
'''Test Code'''<br>
Below is an example code for three LED modules experiment.
<br>[[File:ks0398 4.2.png|600px|frameless|thumb]]<br>
 
<br>
'''What You Should See'''<br>
The three LEDs are gradually brighter then gradually off one by one, circularly. <br>
If it doesn’t, make sure you have assembled the circuit correctly and verified and uploaded the code to your board.
<br>[[File:ks0398 4-3.png|600px|frameless|thumb]]<br>
 
 
<br>
 
==Resources ==
 
https://fs.keyestudio.com/KS0106


<br>


==Connection Diagram ==
==Buy from ==
<br>[[File:ks0106-2.png|500px|frameless|thumb]]<br>
*[https://www.keyestudio.com/keyestudio-easy-plug-photoresistor-sensor-module-for-arduino-steam-p0072-p0072.html    '''Official Website''' ]


*[https://www.aliexpress.com/store/product/2016-New-Keyestudio-EASY-plug-Photoresistor-Sensor-Module-for-Arduino/1452162_32637445281.html?spm=2114.12010612.8148356.64.70f5484ethSftt  Shop on aliexpress ]


==Sample Code==
<pre>
int sensorPin =A2 ;
int value = 0;
void setup()
{
Serial.begin(9600); }
void loop()
{
value = analogRead(sensorPin);
Serial.println(value, DEC);
delay(50);
}
</pre>


[[category:Module]]
[[category:EASY Plug]]

Latest revision as of 15:54, 7 January 2021

EASY plug Photocell Sensor

Introduction

A photoresistor or light-dependent resistor (LDR) or photocell is a light-controlled variable resistor. The principal is very simple. The resistance of photoresistor varies with incident light intensity. If the incident light intensity is high, the resistance decreases; if the light intensity is low, the resistance increases.
keyestudio EASY Plug photocell sensor is a semiconductor, integrated with a photoresistor, easy to use and very convenient for wiring.
It has features of high sensitivity, quick response, spectral characteristic and R-value consistence.
It can be applied in light-sensitive detector circuits, intelligent switch design and light- and dark-activated switching circuits.
This module should be used together with EASY plug control board.

Special Note:
The sensor/module is equipped with the RJ11 6P6C interface, compatible with our keyestudio EASY plug Control Board with RJ11 6P6C interface.
If you have the control board of other brands, it is also equipped with the RJ11 6P6C interface but has different internal line sequence, can’t be used compatibly with our sensor/module.


Specification

  • Interface: Easy plug
  • Sensor type: analog
  • Working voltage: 5V
  • Quick response


Technical Details

  • Dimensions: 38mm*20mm*18mm
  • Weight: 4.3g


Connect It Up

Connect the EASY Plug photocell sensor to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
thumb

Upload the Code

Below is an example code. Open or drag below code to Mixly Blocks and upload.

thumb


What You Should See


thumb

Done uploading the code, you should see the analog value change in accordance with how much light your photoresistor is sensing.
thumb


Controlling light brightness

Hookup Guide
Connect the EASY Plug photocell sensor and LED module to control board using RJ11 cable.
thumb


Test Code
Below is an example code for three LED modules experiment.
thumb


What You Should See
The three LEDs are gradually brighter then gradually off one by one, circularly.
If it doesn’t, make sure you have assembled the circuit correctly and verified and uploaded the code to your board.
thumb



Resources

https://fs.keyestudio.com/KS0106


Buy from