Search Results

Over 13000 results found
Displaying results 11191 - 11220.

Page of 454

W13NK60Z Transistor

W13NK60Z

NMOS TO247 600V 13A 250W 0R5. Also known as STW13NK60Z

£3.75

(inc VAT £4.50)
Quantity

W15NA50 Transistor

W15NA50

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

£3.85

(inc VAT £4.62)
Quantity

W15NB50 Transistor

W15NB50

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

W26NM60 Transistor

W26NM60
NMOS TO247 go to W45NM60

W8NB100 Transistor

W8NB100
NMOS TO247 Go to W11NK100Z

W9NB90 Transistor

W9NB90

NMOS TO247 900V 9A 190W 1R0. Also known as STW9NB90  Genuine ST Stock

£5.35

(inc VAT £6.42)
Quantity

Waterproof Cap for 12mm Toggle Switches

TBCAP

Waterproof Rubber Cap for 12mm Toggle Switches

 

Fits on top of toggle switches with M12 shaft
 

 

£1.00

(inc VAT £1.20)
Quantity

Waterproof Cap for 6mm Toggle Switches

TMCAP

Waterproof Rubber Cap for 6mm Toggle Switches

 

Fits on top of toggle switches with M6 shaft
 

 

£0.75

(inc VAT £0.90)
Quantity

Waterproof Digital Temperature Probe for Arduino DS18B20

DS18B20

Waterproof digital temperature probe for Arduino and other microcontroller projects

 
This probe has a DS18B20 digital temperature IC inside a waterproof probe. It will give you a digital output that will vary depending on temperature.
 
Voltage : 3.3 to 5VDC
Temperature : -55C to 110C
Length : 1M

Example project: 
 

DS18B20 High Accuracy Digital Thermometer.

 
This DS18B20 digital thermometer is extremely useful as a tool for measuring temperature for all kinds of different applications. It has a very wide temperature range (-55°C to 110°C) and high accuracy, especially at temperatures between -10°C to 85°C.  In this project, we will be using an Arduino to read the temperature from the probe and display it on an LCD screen equipped with a KY1602 module.
 
Here’s what you will need: 
 
Tools
 
Components

Libraries

Step 1
First, you will need to connect the probe to the breadboard. This should be easy to do since the probe comes with pre-tinned leads. Simply push the ends of the leads into the breadboard sockets and use a 4.6kΩ pull-up resistor on the data pin as shown in fig.1. Now, you will need to connect the Arduino to the breadboard. Use the jumper leads to connect the male to male jumper leads to connect the power, ground and digital pin to the breadboard. 
 
Step 2
Solder the KY1602 module onto the 1602 LCD screen. Pin 1 on the KY1602 module is the one closest to the 4 data and power pins. Once soldered, you can now connect the LCD display to the Arduino as shown in fig.1:
 

Fig. 1




Step 3
Connect the Arduino to your computer and install the libraries mentioned above. If you need help installing the libraries, CLICK HERE for a quick tutorial.
 
Step 4
You can now start writing the code to get this all working: 


First, clear the IDE window. Then, include the aforementioned libraries:
 
 
#include <DS18B20.h> 
#include <LCD_I2C.h> 
 


Initialize the KY1602 I2C LCD driver (address 0x27 in this example) and specify the LCD display (in this case 16 characters, 2 rows):
 
    
DS18B20 ds(12); 
LCD_I2C lcd(0x27, 16, 2); 
    


Initialize the LCD display and turn on the LCD backlight. This is done inside the void setup function:
 
    
void setup() { 
lcd.begin(); 
lcd.backlight(); 
} 
    


Start a while loop. This is done inside the void loop function:
 
    
void loop() { 
while (ds.selectNext()) { 
    


Set the cursor to the first character and display the temperature in ºF and ºC:
 
    
lcd.setCursor(0,0); 
  lcd.print(ds.getTempC()); 
  lcd.print((char)223); 
  lcd.print("C"); 
  lcd.setCursor(0,1); 
  lcd.print(ds.getTempF()); 
  lcd.print((char)223); 
  lcd.print("F"); 
  } 
    


Choose how often to update the screen (in this case, 800ms):
 
    
  delay(800); 
} 
    


The completed code should look like this:
 
    
#include <DS18B20.h> 
#include <LCD_I2C.h> 
 
DS18B20 ds(12); 
LCD_I2C lcd(0x27, 16, 2); 
 
void setup() { 
  lcd.begin(); 
  lcd.backlight(); 
} 
 
void loop() { 
  while (ds.selectNext()) { 
  lcd.setCursor(0,0); 
  lcd.print(ds.getTempC()); 
  lcd.print((char)223); 
  lcd.print("C"); 
  lcd.setCursor(0,1); 
  lcd.print(ds.getTempF()); 
  lcd.print((char)223); 
  lcd.print("F"); 
  } 
  delay(800); 
} 
 
    
Step 4
Press the “Upload” button at the top (button with tick, located below “File”). The IDE will now compile the code and upload it to your Arduino (this will take a few moments).
 
Step 5
Done! If the connections are correct and there are no errors with the code, the LCD should display the temperature. 
 
£4.50

£3.50

(inc VAT £4.20) 22% Off
Quantity

WD1014CL Integrated Circuit (IC)

WD1014CL
IC Bus Driver/Manager 40DIL

£9.00

(inc VAT £10.80)
Quantity

WD2793A-PL02 Integrated Circuit (IC)

WD2793A

IC Floppy Disk Controller 40DIL

£65.00

(inc VAT £78.00)
Quantity

WD2797PL02 Integrated Circuit (IC)

WD2797PL02

IC Floppy Disk Controller 40DIL

£12.50

(inc VAT £15.00)
Quantity

Wemos D1 Mini v3 IoT WiFi & Bluetooth Microcontroller Prototyping Board

WemosD1miniV3

2.4GHz WiFi NodeMcu IoT Development board for Arduino and other IOT projects

 
This module is based on the ESP-8266EX chip, which provides WiFi and Bluetooth connectivity for your IoT projects. Can be used with various other microcontrollers or stand-alone.
 
Features

11 Digital I/O pins (all pins support interrupt, PWM, I2C, one-wire except D0)
1 Analog input (3.2V Max)
Micro USB connector
Compatible with MicroPython, Arduino, nodemcu or can be used stand-alone
£6.50

£5.50

(inc VAT £6.60) 15% Off
Quantity

White Deep Base Junction Box for Eyeball Dome & Bullet Cameras 100mm x 50mm

JBSW

White Deep Base Junction Box for Eyeball Dome & Bullet Cameras

Neat & useful for all types of CCTV cameras. Can be fitted outdoors & Indoors at any angle.

Diameter 100mm x Height 50mm. Contains

cable glands & screws & wall plugs

£14.85

£14.75

(inc VAT £17.70) 1% Off
Quantity

White Deep Base Junction Box for Eyeball Dome & Bullet Cameras 135mm x 53mm

JBLW

White Deep Base Junction Box for Eyeball Dome & Bullet Cameras

Neat & useful for all types of CCTV cameras. Can be fitted outdoors & Indoors at any angle

Diameter 135mm x Height 53mm 

Contains cable glands & screws & wall plugs

£15.75

(inc VAT £18.90)
Quantity

White Deep Base Junction Box for Eyeball Dome & Bullet Cameras UniView

TR-JB03-G-IN

White Deep Base Junction Box for Eyeball Dome & Bullet Cameras

Diameter 100mm x Height 35mm. Contains

cable glands & screws & wall plugs

£17.00

(inc VAT £20.40)
Quantity

White Gaffa Gaffer Tape 48mm x 50M

GAF53

Superior Quality Water Resistant Gaffa Gaffer Tape - White

50 metres long x 48mm thick. 13 microns thick

Easily Tearable Cloth Backed

  • Water resistant
  • Easy tearable
  • Maximum strength adhesive

£4.50

(inc VAT £5.40)
Quantity

White Top 15mm Knob For Splined 6mm Spindle

KJ15W

White Top 15mm Knob For Splined 6mm Spindle

Diameter: 15mm
Height: 17mm
Inner Hole Diameter: 6mm

£0.50

(inc VAT £0.60)
Quantity

White Trailing Mains Socket 240VAC 13 Amps

M13T1

White Trailing Mains Socket 240VAC 13 Amps

Mains Single Rewirable White Socket rated at 13 Amps 240VAC

1 gang trailing socket. 250VAC 13 Amps

Conforms to BS1363A
 
Fitted with Safety Cable clamp

£2.00

(inc VAT £2.40)
Quantity

WS2812 High Brightness Individually Addressable RGB LED Strip Cut to Length

WS2812B-S

WS2812 RGB LED Strip Cut to Length 

The WS2812 is a smart RGB (Red, Green, Blue) LED module that is capable of displaying up to 16,777,216 colours at 256 different levels of brightness per LED. Each LED can be controlled individually using a microcontroller (e.g. Arduino, NodeMCU).

The LEDs are mounted on a flexible PCB and are cut to length (minimum 10 LEDs, max. 720 LEDs). 

3 Pin JST leads for the strips can be found HERE

Specifications:

LED Density: 144 LEDs/metre
Input Voltage: 5V DC


 

£0.30

(inc VAT £0.36)
Quantity
Note: you must order at least 10 items

WS2812B High Brightness Individually Addressable RGB LED

WS2812B

WS2812B SMD High Brightness Individually Addressable RGB LED

 
The WS2812B is a smart RGB (Red, Green, Blue) LED module that is capable of displaying up to 16,777,216 colours at 256 different levels of brightness per LED. Each LED can be controlled individually using a microcontroller (e.g. Arduino, NodeMCU).
 
The LEDs are sold individually on SMD tape.

Specifications:
SMD Package Type: 5050
Supply Voltage: 3.5 - 5.3V DC

 
 

£0.30

(inc VAT £0.36)
Quantity

X2444P Integrated Circuit (IC)

X2444P
IC EEPROM 16 X 16 8DIL

£3.00

(inc VAT £3.60)
Quantity

XLR 3 pin Coupler Male to Male

3MM

XLR 3 pin Coupler Male to Male Connector - Joins 2 Females

£2.75

(inc VAT £3.30)
Quantity

XLR 3 pin Female to 6.3mm Mono Male Adaptor

3FJM

Adaptor 3 pin XLR female to Mono 6.3mm Jack plug

£2.75

(inc VAT £3.30)
Quantity

XLR 3 pin Female to 6.3mm Stereo Female Adaptor

3FSF

Adaptor 3 pin XLR Female to 6.3mm Stereo Jack Socket

£2.50

(inc VAT £3.00)
Quantity

XLR 3 pin Female to 6.3mm Stereo Male Adaptor

3FSM

Adaptor 3 pin XLR Female to 6.3mm Stereo Jack Plug

£2.75

(inc VAT £3.30)
Quantity

XLR 3 pin Female to RCA Female Adaptor

3FPF

Adaptor 3 pin XLR Female to Phono (RCA) Female

£3.00

(inc VAT £3.60)
Quantity

XLR 3 pin Female to RCA Male Adaptor

3FPM

Adaptor 3 pin XLR Female to Phono Plug (RCA)

£2.00

(inc VAT £2.40)
Quantity

XLR 3 pin Line Plug in the Style of Switchcraft

A3M

XLR 3 pin line plug Switchcraft style

£1.00

(inc VAT £1.20)
Quantity

XLR 3 pin Line Socket with Latch in the Style of Cannon

A3FC

XLR 3 pin line socket with latch. Cannon style

£1.00

(inc VAT £1.20)
Quantity
Page of 454