The cookie settings on this website are adjusted to allow all cookies so that you have the very best experience. If you continue without changing your cookie settings, we'll assume that you are happy to receive all cookies on our website. However, if you would like to, you can change your settings at any time using the Change cookie settings link in the Special menu. 
    
 
+44 (0)20-84520161 Contact Us
Now FREE Delivery on UK mainland orders over £30+VAT

Search Results

685 Results Found. Displaying Results 481 - 510
 

Products


  • TDA8215B Integrated Circuit (IC)

    TDA8215B Integrated Circuit (IC)

    IC Horizontal & Vertical Deflection 20DIL


    Item Number: TDA8215B
    £9.00 (inc VAT £10.80)
     
  • TDA9151B Integrated Circuit (IC)

    TDA9151B Integrated Circuit (IC)

    IC Horizontal & Vertical Deflection 20DIL


    Item Number: TDA9151B
    £9.00 (inc VAT £10.80)
     
  • TDA9815 Integrated Circuit (IC)

    TDA9815 Integrated Circuit (IC)

    IC Multistandard/MAC VIF, PLL with QSS IF & dual FM PLL/AM demodulato 32miniDIP


    Item Number: TDA9815
    £4.50 (inc VAT £5.40)
     
  • TDB2915SP Fixed Voltage Regulator

    TDB2915SP Fixed Voltage Regulator

    15V 1.5A Negative Voltage Regulator TO220.



    Item Number: TDB2915SP
    £2.25 (inc VAT £2.70)
     
  • TEA1504 Integrated Circuit (IC)

    TEA1504 Integrated Circuit (IC)

    IC Switchmode Controller 14DIL


    Item Number: TEA1504
    £2.50 (inc VAT £3.00)
     
  • TEA1522P Integrated Circuit (IC)

    TEA1522P Integrated Circuit (IC)

    IC Starplug Switchmode Controller 650V 8DIL



    Item Number: TEA1522P
    £3.00 (inc VAT £3.60)
     
  • TEA1533AP Integrated Circuit (IC)

    TEA1533AP Integrated Circuit (IC)

    IC Greenchip Switchmode Controller 70-276VAC 8DIL


    Item Number: TEA1533AP
    £4.00 (inc VAT £4.80)
     
  • TEA5115 Integrated Circuit (IC)

    TEA5115 Integrated Circuit (IC)

    IC RGB Switch X 5 25MHz


    Item Number: TEA5115
    £2.50 (inc VAT £3.00)
     
  • TEA6415C Integrated Circuit (IC)

    TEA6415C Integrated Circuit (IC)

    IC Video Matrix Switch 20DIL



    Item Number: TEA6415C
    £2.50 (inc VAT £3.00)
     
  • Temperature and humidity module for Arduino KY-015

    Temperature and humidity module for Arduino KY-015

    What is the KY-015 DHT11 Module?

    The KY015 is a temperature and humidity module for Arduino and other microcontroller projects

     

    KY-015 module has a DHT11digital temperature and humidity sensor and a resistor. The DHT11 uses a thermistor for the temperature sensing and a capacitive humidity sensor along with an internal IC to give a digital output for both temperature and humidity.

     

    Voltage : 3.3 to 5VDC

    Humidity range : 20% to 90% @ 5% RH accuracy

    Temperature range : 0C to 50C at 2C accuracy

    Size 30x15mm

     

    How Can I use the KY-015 Module to monitor temperature and humidity?

    Here is an example project to measure temperature and humidity using the KY015 module and an Arduino Uno

     

    Temperature and Humidity Sensor

    In this project, we will be building a weather station that can measure both temperature and humidity.

    This is what you will need:

    Tools

    Jumper Leads (male to female)

     

    Components

    Arduino Uno x 1 or Arduino Nano x 1

    KY-15 sensor module

     

    Libraries

    DHT Sensor Library

    Adafruit Unified Sensor Library

     

    Step 1

    First you will nedd to assemble the project. Connect everything together using the wiring diagram bellow for reference.

     

     

    Connect the KY-015 sensor module to the Arduino

    KY-015                        Arduino   

    Ground - - - - - - - - - -  Ground
    Vcc - - - - - - - - - - - - - - 3v3
    Data - - - - - - - - - - - - -  A0

    A 10KΩ pull-up resistor is built in to the KY-015

     

    Step 2

    Connect your Arduino to the PC and install the above Libraries. If you don’t know how to do this, CLICK HERE and follow the “Installing Arduino Libraries” section.

     

    Step 3

    We can now create the code to get this all working

    First, delete the code in the IDE window, then include the aforementioned libraries:  

    #include "DHT.h"

    This bit of code imports the DHT library and links it to the sketch.

    #define DHTPIN A0
    #define DHTTYPE DHT11

    This bit of code defines which pin is KY015 connected to and sets the type of sensor (KY015 uses DHT11)

    DHT dht(DHTPIN, DHTTYPE);

    This bit of code initialises the sensor

    void setup() {
      Serial.begin(115200);
      Serial.println(F("DHT11 test!"));
      dht.begin();
    }

    The setup bit of code initialises serial output with baud rate of 115200 and prints DHT11 test! In the console

    void loop() {
    	  delay(2000);

    This bit makes the Arduino wait 2 seconds between measurements

      float h = dht.readHumidity();

    Read humidity from the sensor

      float t = dht.readTemperature();
    Read temperature from the sensor
      Serial.print(F("Humidity: "));
      Serial.print(h);
      Serial.print(F("%  Temperature: "));
      Serial.print(t);
      Serial.println(F("°C "));
    }

    Print the latest reading in serial monitor

     

    Finished Code:

    #include "DHT.h"
    
    #define DHTPIN A0     // Digital pin connected to the DHT sensor
    #define DHTTYPE DHT11   // DHT 11
    DHT dht(DHTPIN, DHTTYPE);
    
    void setup() {
      Serial.begin(115200);
      Serial.println(F("DHT11 test!"));
    
      dht.begin();
    }
    
    void loop() {
      delay(2000);
    
      float h = dht.readHumidity();
      float t = dht.readTemperature();
    
      Serial.print(F("Humidity: "));
      Serial.print(h);
      Serial.print(F("%  Temperature: "));
      Serial.print(t);
      Serial.println(F("°C "));
    }

     



    Item Number: KY015
    £2.50 (inc VAT £3.00)
     
  • TIP150 Transistor

    TIP150 Transistor

    NPN Darlington TO220 Go to TIP152


    Item Number: TIP150
    Price

    The comment above should be useful to you.

  • TIP151 Transistor

    TIP151 Transistor

    NPN TO220 Darlington go to TIP152


    Item Number: TIP151
    Price

    The comment above should be useful to you.

  • TIP152 Transistor

    TIP152 Transistor

    NPN Darlington TO220 400V 7A 80W



    Item Number: TIP152
    £2.50 (inc VAT £3.00)
     
  • TMP47C434N3415 Integrated Circuit (IC)

    TMP47C434N3415 Integrated Circuit (IC)

    IC Central Processing Unit 42miniDIP


    Item Number: TMP47C434N3415
    £15.00 (inc VAT £18.00)
     
  • TUA1574 Integrated Circuit (IC)

    TUA1574 Integrated Circuit (IC)

    IC FM Tuner 18DIL


    Item Number: TUA1574
    £4.00 (inc VAT £4.80)
     
  • Turntable Belt 158 x 0.7 x 5mm

    Turntable Belt 158 x 0.7 x 5mm

    Precision Flat Rubber Turntable Belt 5 x 0.7mm, 158mm inside diameter



    Item Number: TD158
    £3.75 (inc VAT £4.50)
     
  • UM9151-3 Integrated Circuit (IC)

    UM9151-3 Integrated Circuit (IC)

    IC DTMF Telephone Dialler 16DIL


    Item Number: UM9151-3
    £6.00 (inc VAT £7.20)
     
  • UPC1156H2 Integrated Circuit (IC)

    UPC1156H2 Integrated Circuit (IC)

    IC Audio Amplifier 5.8W 10SIL



    Item Number: UPC1156H2
    £8.50 (inc VAT £10.20)
     
  • UPC1158HA2 Integrated Circuit (IC)

    UPC1158HA2 Integrated Circuit (IC)

    IC Record with Automatic Level Control 7SIL



    Item Number: UPC1158HA2
    £8.75 (inc VAT £10.50)
     
  • UPC1514CA Integrated Circuit (IC)

    UPC1514CA Integrated Circuit (IC)

    IC NEC 18miniDIP


    Item Number: UPC1514CA
    £2.00 (inc VAT £2.40)
     
  • UPC1536C Integrated Circuit (IC)

    UPC1536C Integrated Circuit (IC)

    IC Chroma Signal Processor 28DIL


    Item Number: UPC1536C
    £6.00 (inc VAT £7.20)
     
  • UPC1571C Integrated Circuit (IC)

    UPC1571C Integrated Circuit (IC)

    IC go to NE571N


    Item Number: UPC1571C
    Price

    The comment above should be useful to you.

  • V3 Microswitch with Button SPDT 230VAC 15 Amps Max

    V3 Microswitch with Button SPDT 230VAC 15 Amps Max

    Microswitch V3 series 250VAC 15A max. 16 x 28 x 10.5mm

    Long Life. Standard button SPDT (3 terminals) 6.3mm flat connectors or can be soldered



    Item Number: V3NB
    £2.00 (inc VAT £2.40)
     
  • W15NA50  Transistor

    W15NA50 Transistor

    NMOS TO247 500V 14.6A 190W 0R36. Also known as STW15NA50



    Item Number: W15NA50
    £3.85 (inc VAT £4.62)
     
  • W15NB50 Transistor

    W15NB50 Transistor

    NMOS TO247 500V 14.6A 190W 0R36. Also known as STW15NB50. DISCONTINUED - Please go to equivalent W15NA50



    Item Number: W15NB50
    Price

    The comment above should be useful to you.

  • XR4151 Integrated Circuit (IC)

    XR4151 Integrated Circuit (IC)

    IC go to RC4151


    Item Number: XR4151
    Price

    The comment above should be useful to you.

  • Z15V Zener Diode

    Z15V Zener Diode

    15V 400mW. Zener Diode. 5% Tolerance.


    Item Number: Z15V
    £0.10 (inc VAT £0.12)
     
  • ZN415E Integrated Circuit (IC)

    ZN415E Integrated Circuit (IC)

    IC AM TRF RADIO 8DIL


    Item Number: ZN415E
    £15.00 (inc VAT £18.00)
     
  • 15 ohm 1% Metal Film 1/4 Watt Resistors Pack of Ten

    15 ohm 1% Metal Film 1/4 Watt Resistors Pack of Ten

    Metal Film Resistor 1% Tolerance 1/4W 250V max 15 ohms. 10 pack



    Item Number: M15R
    £0.50 (inc VAT £0.60)
     
  • 15 ohm 1/2 Watt Resistors Pack of 10

    15 ohm 1/2 Watt Resistors Pack of 10

    Carbon Film Resistor 1/2 Watt 5% 10 Pack. 15 ohms


    Item Number: H15R
    £0.50 (inc VAT £0.60)
     

Bestsellers


Trustpilot