Products Map

Page of 40

TEA3717DP Integrated Circuit (IC)

TEA3717DP
IC Stepper Motor Driver 16DIL

£2.00

(inc VAT £2.40)
Quantity

TEA3718SP Integrated Circuit (IC)

TEA3718SP

IC Stepper Motor Driver 15ZIL

£4.00

(inc VAT £4.80)
Quantity

TEA5101B Integrated Circuit (IC)

TEA5101B

TEA5101B IC RGB Amp High Voltage 15ZIP

£4.50

(inc VAT £5.40)
Quantity

TEA5114A Integrated Circuit (IC)

TEA5114A
IC RGB Switch X 2 20MHz 16DIL

£1.50

(inc VAT £1.80)
Quantity

TEA5115 Integrated Circuit (IC)

TEA5115
IC RGB Switch X 5 25MHz

£2.50

(inc VAT £3.00)
Quantity

TEA5116 Integrated Circuit (IC)

TEA5116
IC RGB Switch X 5 25MHz 18DIL

£2.00

(inc VAT £2.40)
Quantity

TEA5170 Integrated Circuit (IC)

TEA5170
IC Switchmode Controller 8DIL

£2.00

(inc VAT £2.40)
Quantity

TEA5570 Integrated Circuit (IC)

TEA5570

IC AM FM RF IF 16DIL

£5.85

(inc VAT £7.02)
Quantity

TEA5591 Integrated Circuit (IC)

TEA5591

IC AM & FM Receiver 20DIL

£4.50

(inc VAT £5.40)
Quantity

TEA5701 Integrated Circuit (IC)

TEA5701
IC Triple Video Head Amplifier 20SMD

£5.00

(inc VAT £6.00)
Quantity

TEA5712 Integrated Circuit (IC)

TEA5712
IC AF/FM DTS Stereo 32miniDIP

£5.00

(inc VAT £6.00)
Quantity

TEA6000 Integrated Circuit (IC)

TEA6000
IC AM/FM IF Tuning 18DIL

£5.00

(inc VAT £6.00)
Quantity

TEA6415C Integrated Circuit (IC)

TEA6415C

IC Video Matrix Switch 20DIL

£2.50

(inc VAT £3.00)
Quantity

TEA6420 Integrated Circuit (IC)

TEA6420
IC Matrix Amplifier & Preamplifier 24miniDIP

£2.00

(inc VAT £2.40)
Quantity

TEA6422 Integrated Circuit (IC)

TEA6422
IC Bus Controlled Audio Matrix 6 stereo inputs, 3 stereo outputs 24miniDIP (ShrinkDIP)

£6.00

(inc VAT £7.20)
Quantity

TEA6422D Integrated Circuit (IC)

TEA6422D

IC Bus Controlled Audio Matrix 6 stereo inputs, 3 stereo outputs SO28 (SMD)

£6.00

(inc VAT £7.20)
Quantity

Teflon Kit for TO66 Transistors

TF66

PTFE (Teflon) Washer and 2 bushes for TO66 devices

£0.50

(inc VAT £0.60)
Quantity

Telefunken Common Anode Dual 7-Segment LED Display - Red

TDDR5250

NOS Telefunken Red Common Anode Dual 7-Segment Display

Original Telefunken NOS 13mm Digit Height
 
Overall Dimensions: 25mm x 17.5mm x 6mm
 

£2.00

(inc VAT £2.40)
Quantity

Temperature and humidity module for Arduino KY-015

KY015

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

 

£2.50

(inc VAT £3.00)
Quantity

Temperature sensor module for Arduino KY-001

KY001

Temperature module for Arduino and other microcontroller projects

 
This module has a DS18B20 digital temperature, an LED and a resistor. It will give you a digital output that will vary depending on temperature.
 
Voltage : 3.3 to 5VDC
Temperature : -55C to 125C
Size 19x15mm

£2.50

(inc VAT £3.00)
Quantity

Tesla Coil Kit With Audio Input

CKTC1

Tesla Coil Kit with Audio Input

Amaze your friends with this cool musical tesla coil kit. When fully assembled, this module will act as a tesla coil which will play audio through the arcs when an audio source (e.g. phone, laptop) is connected to the audio input of the coil. It runs on 15-24V DC, either from batteries or a power supply (not included). 

 

Power Input: 12-24V DC, 2.1 x 5.5mm 
Audio Input: 3.5mm stereo socket (only the left channel is active)
PCB Dimensions: 80 x 38mm

Please note: Tesla coils produce very high voltages; do not touch this device when it is turned on! This device produces intense radio frequency interference which can affect any electronic devices near it (e.g. pacemakers). Lastly, the arcs produced by Tesla coils can ignite flammable objects; keep all flammable objects away from the Tesla coil.

 





 

£9.50

(inc VAT £11.40)
Quantity

TEST123

TEST123

For testing only. DO NOT BUY

TIC116N Thyristor, Silicon Controlled Rectifier (SCR)

TIC116N

SCR Thyristor TO220 800V 8A 20mA 1V5

£4.50

(inc VAT £5.40)
Quantity
Page of 40