Search Results

Over 13000 results found
Displaying results 6661 - 6690.

Page of 460

Citronic PLX3600 2 x 1800W RMS Stereo Amplifier

PLX3600

Citronic PLX3600 Class H 1800W+1800W RMS in to 2 ohms 19" Rackmount High Power Amplifier 

 

With Dual Fan cooling and Output Protection. Uses Class H for safe, reliable power delivery. Balanced inputs via 6.3mm jack or XLR sockets, speaker outputs on 2 SPK connectors

 

Bridge mode for high power mono operation

Output stable down to 2 Ohms

Removable handles for low profile install

Balanced inputs via 6.3mm jack or XLR sockets, speaker outputs on 2 SPK connectors or 4mm binding posts. Switchable ground lift, bridge mode and clip limiter.

 

Bridge mode for high power mono operation

Removable handles for low profile install

Switchable clip limiter

Powered by:  230Vac

Controls: Level channel 1, level channel 2, ground, mode, clip limiter

Input impedance: 20k ohms

Frequency response: 5Hz - 50kHz

Total harmonic distortion: 0.05%

Slew rate: 40V/us

Damping factor: Less than 400

Protection: Short-circuit, overload, D.C. and thermal

imensions482 x 453 x 88mm (2U)

 

Specification:

Power rms @ 2 Ohms                                                               2 x 1800W                     

Power rms @ 4 Ohms                                                               2 x 1350W                       

Power rms @ 8 Ohms                                                               2 x 800W                                                               

Power rms bridge @ 4 Ohms                                                   2900W                           

Power rms bridge @ 8 Ohms                                                   2300W                           

Weight   25kg

 

£535.00

(inc VAT £642.00)
Quantity

CJMCU-7620 Arduino-Compatible Gesture Recognition Sensor

CJMCU7620

CJMCU7620 Arduino-Compatible Gesture Recognition Sensor

This PAJ7620-based sensor offers a built-in proximity sensor and is capable of detecting 9 various hand gestures (up, down, left, right, forward, backward, clockwise, counterclockwise and waving). The I2C bus makes it easy to interface with a large variety of microcontrollers. 

Voltage: 3.3VDC 

Size: 21x15mm
 

 

£8.00

(inc VAT £9.60)
Quantity

CJMCU-811CO2 VOC Air quality Module with CCS811 for Arduino and other microcontroller projects

CJMCU811

 

What is the CJUMCU-811 Module?

CO2 and VOC indoor air quality sensor module for Arduino and other microcontroller projects

This module has a CCS811 module that is an ultra low powered digital gas sensor using a metal oxide multi compound sensor. The module uses the onboard MCU to manage the sensor and provide the needed Analogue to Digital conversion and I2C interface making it simple to add to your project. It will detect a wide range of VOCs including Carbon Monoxide and can convert this to an eCO2 (equivalent CO2) value.
 

Voltage: 3.3VDC 

Size: 21x15mm
 

How Can I use the CJUMCU-811 to test air quality and CO2 levels?


Here is an example project for an air quality meter using the CJUMCU-811, an Arduino Uno and a 1602 LCD screen with a KY1602 to display CO2 levels and air quality:

 

 

Air Quality Sensor with LCD

In this project, we will be building an air quality station that can measure eCO2 (estimated carbon dioxide) levels and a wide range of VOCs (Volatile Organic Compounds). High VOC levels can contribute to a wide range of health complications and high CO2 levels (>1000ppm) can impair normal cognitive function, so it is useful to be able to monitor them.


Here’s what you will need:
 

Tools
Soldering Iron
Solder
Jumper Leads (male to female)

Components
CJMCU811 x 1
LCD1602B LCD screen x1
Arduino Uno x 1 or Arduino Nano x 1
KY1602 Parallel to Serial converter
 

Libraries

CCS811 Arduino Library

PCF8574 Arduino Library

 

Step 1
First you will need to assemble the project. The CJMCU should come with a set of pin headers that need to be soldered directly on it and the KY1602 should be soldered directly to the back of the LCD screen. Now, connect everything together using the wiring diagram below for reference.

 


 

 

Connecting the CJMCU811 to an Arduino       Connecting the KY1602 to an Arduino and a 1602 LCD 
CJMCU                           Arduino                     KY1602                          Arduino            LCD
VCC----------------------------3.3V                       VCC-----------------------------5V
GND----------------------------GND                      GND----------------------------GND
SCL------------------------------A5                        SCL-----------------------------A5
SDA-----------------------------A4                         SDA-----------------------------A4
                                                                        Pins 1-16---------------------------------------Pins 1-16*


 *pin 1 on the KY1602 is the one nearest to the 4 data and power pins

 

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 <LCD_I2C.h> 
#include <Wire.h> 
#include "SparkFunCCS811.h" 
    

 


Now, We need to declare the I2C devices and their addresses:  

 
    
#define CCS811_ADDR 0x5B 
LCD_I2C lcd(0x27, 16, 2); 
CCS811 sensor(CCS811_ADDR); 
    

Initialize the I2C devices and turn on lCD backlight in the setup function:

 
    
void setup() 
{ 
  Wire.begin(); 
  lcd.begin(); 
  lcd.backlight(); 
 
    

Start serial communication  

 
Serial.begin(115200); 
delay(1000);

Check to see if the CJMCU is configured correctly, otherwise display error message:

 
    
if (sensor.begin() == false) 
  { 
  Serial.print("Sensor error. Check connection"); 
  while (1); 
  } 
    

Starting the void loop function. Check to see if the data from the sensor is available, and if so, read and calculate the results:

 
    
if (sensor.dataAvailable()) 
  { 
  sensor.readAlgorithmResults(); 
    

Send the data via serial port:

 
    
Serial.print("CO2["); 
  Serial.print(sensor.getCO2()); 
  Serial.print("] tVOC["); 
  Serial.print(sensor.getTVOC()); 
    

Display the same data on the LCD display:

 
    
lcd.setCursor(0,0); 
lcd.print("Est. CO2 - "); 
  lcd.print(sensor.getCO2()); 
  lcd.setCursot(0,1); 
lcd.print("Tot. VOC - "); 
  lcd.print(sensor.getTVOC()); 
  } 
    

Add 10ms delay to prevent overloading the I2C bus:

 
    
delay(10); 
    

The completed code should look like this:

 

 
    
/*  
Connecting the CJMCU811 to an Arduino Uno or an Arduino Nano:  
 
CJMCU811       Arduino 
VCC-------------->3V3 
GND-------------->GND 
SCL-------------->A5 
SDA-------------->A4 
*/ 
  
#include <lcd_i2c.h> 
#include <wire.h> 
#include "SparkFunCCS811.h" 
LCD_I2C lcd(0x27, 16, 2); //Address of the KY1602 module 
#define CCS811_ADDR 0x5A //if it doesn't work, change to 0x5B 
 
CCS811 sensor(CCS811_ADDR); 
 
void setup() 
{ 
  Wire.begin(); //Initialize I2C Hardware 
 
  lcd.begin(); // If you are using more I2C devices using the Wire.h library, use lcd.begin(false) 
 
  lcd.backlight(); 
 
  Serial.begin(115200);  //Starting serial communication 
  delay(1000); 
 
   
  if (sensor.begin() == false) 
  { 
  Serial.print("Sensor error. Check connection"); 
  while (1); 
  } 
} 
 
void loop() 
{ 
  if (sensor.dataAvailable())//Check to see if data is ready with .dataAvailable(). if statement checking to see  
  { 
  //If so, have the sensor read and calculate the results. 
  sensor.readAlgorithmResults(); 
   
  Serial.print("CO2["); //Returns estimated CO2 reading 
  Serial.print(sensor.getCO2()); 
  Serial.print("] tVOC[");//Returns calculated total VOC reading 
  Serial.print(sensor.getTVOC()); 
 
  lcd.setCursor(0,0); 
  lcd.print("Est. CO2 - "); 
  lcd.print(sensor.getCO2()); 
  lcd.setCursor(0,1); 
  lcd.print("Tot. VOC - "); 
  lcd.print(sensor.getTVOC()); 
  } 
  delay(10); //Prevents overloading of the I2C bus 
} 
    

 

 

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 may take a few moments).

Step 5 To check if everything is working, open the serial monitor from the Arduino IDE (magnifying glass button in the top right corner) and see if you can get a reading. The CJMCU has to be left on for 24 hours before it will give a correct reading. If everything is connected correctly, the LCD should also show readings from the sensor.

Step 6 That’s it! You should now have a fully working air quality sensor. Now all you need to decide is what sort of enclosure you want to put it in. You can look at our high quality boxes HERE for ideas.

 

£16.50

(inc VAT £19.80)
Quantity

CK2206

CK2206

XR2206 Signal Generator Kit 1Hz 100MHz Frequency Range with Adjustable Frequency

XR2206 High precision signal generator


Circuit characteristics:

• Can produce sine wave, triangular wave, square wave

• Frequency can be from 1HZ-1MHZ

• Frequency, amplitude adjustable;

• five-bit precision resolution;

• Frequency adjustment has coarse adjustment and fine adjustment;

• Wide range of power supply, can use external power 9-12V or 9V battery;

• All in-line components, small number of components, simple installation and debugging.
Parameters: Technical specifications:

Power supply voltage: 9-12V DC input
Waveform: square, sine and triangle
Impedance: 600 ohms + 10%
Frequency: 1hz-1mhz
Sinusoidal wave
Amplitude: 0-3V at 9V DC input
Distortion: less than 1% (1kHz)
Flatness: + 0.05db 1hz expansion
Square wave
Amplitude: 8v (no load) at 9V DC input
Rise time: less than 50ns (1kHz)
Drop time: less than 30ns (1kHz)
Symmetry: less than 5% (1kHz)
Triangular wave
Amplitude: 0-3V at 9V DC input
Linearity: less than 1% (up to 100kHz) 10ma

£6.50

(inc VAT £7.80)
Quantity

CLARA Professional 1000W Active Speaker Cabinet with 15" Speaker with PC Software

CLARA15A
CLARA Series High Power Active Moulded Cabinets

 

Active sound-reinforcement speakers with polypropylene enclosures and built-in class-D amplifier modules. Each cabinet is equipped with an extended frequency main driver and a titanium compression driver for optimum clarity. Power from the internal bi-amplifier is controlled from an internal DSP section, offering pre-set profiles with crossover, EQ and dynamics processing to suit the program material. Custom settings can be created via the onboard rotary encoder and backlit display or by connecting the CLARA unit to a PC or laptop via USB and editing using the free-to-download ADU software application. 2 combo inputs on the rear panel can accept balanced or unbalanced line level audio with 6.3mm jack or XLR connection. An integral Bluetooth® receiver can be paired to a smart phone and audio can be streamed wirelessly through input A. In addition to a line level input for input B, there is a mic/line level switch to enable direct connection of a microphone. Maximum sound impact from a lightweight and easy to manage cabinet.

 

  • DSP speaker management with editing software
  • Bluetooth connectivity
  • High power class-D bi-amplifier
  • High impact PP cabinet with side & top handles
  • 35mm pole mount socket

Power supply: 90-254Vac, 50/60Hz (IEC)

Amplifier construction: Class-D bi-amplifier with DSP

Audio source: Internal Bluetooth receiver

DSP settings: Normal, Jazz, Pop, Classical, Custom

Line output: XLR

Flying points: 3 x M8 for vertical suspension
£325.00

£240.00

(inc VAT £288.00) 26% Off
Quantity

Clear Ultra Bright 20000mcd 5mm Water Clear Red LED

R5U

Red 5mm Water Clear Seriously Bright LED 20,000mcd.625nm

Max Voltage 2.5V

Max Current 50mA

Angle 15deg

 

£0.75

(inc VAT £0.90)
Quantity

CNR50

CNR50

Opto Coupler. Diode 5V 60mA max. Detector 18V 100mA max. 7KV isolation

£3.00

(inc VAT £3.60)
Quantity

CNX35

CNX35

Opto Coupler. Emitter 5V 100mA max, Detector 80V 100mA max. 6DIL

£3.50

(inc VAT £4.20)
Quantity

CNX62A

CNX62A

Opto Coupler. In: 6V 60mA, Out: 50V 40mA. CTR: 40% min. No Base 6DIL

£2.50

(inc VAT £3.00)
Quantity

CNX82A

CNX82A

OPTOISOLATOR No base. In: 5V 100mA max. Out: 50V 100mA max 40% min. 6DIL

£2.50

(inc VAT £3.00)
Quantity

CNX83A

CNX83A

OPTOISOLATOR In: 5V 100mA max. Out: 50V 100mA max. 40% min. 6DIL

£2.50

(inc VAT £3.00)
Quantity

CNY17

CNY17
OPTOISOLATOR go to CNY17-3

CNY17-2

CNY17-2
OPTOISOLATOR Go to CNY17-3

CNY17-3

CNY17-3

OPTOISOLATOR In: 5V 60mA. Out 32V 50mA. 100% min. Isolation Voltage: 3.75KVAC 6DIL

£3.00

(inc VAT £3.60)
Quantity

CNY17F2

CNY17F2

OPTOISOLATOR 63% min No base 6DIL

£2.50

(inc VAT £3.00)
Quantity

CNY17F3

CNY17F3

OPTOISOLATOR 100% No base 6DIL

£2.00

(inc VAT £2.40)
Quantity

CNY22

CNY22

OPTOISOLATOR 5PIN

£3.00

(inc VAT £3.60)
Quantity

CNY57

CNY57

OPTOISOLATOR 6DIL

£0.90

(inc VAT £1.08)
Quantity

CNY65

CNY65

OPTOISOLATOR High Insulation 3mm thick. 1000Vrms. 32V 50% min. 5uS 4PIN THICKPACK

£0.90

(inc VAT £1.08)
Quantity

CNY70

CNY70

Opto Sensor Reflective 32V 1.5% 4pin

£1.75

(inc VAT £2.10)
Quantity

CNY74-4

CNY74-4

4 Opto Isolators in16DIL package

£5.85

(inc VAT £7.02)
Quantity

CNY75C

CNY75C

OPTOISOLATOR 160% min 6DIL

£0.50

(inc VAT £0.60)
Quantity

Coaxial Female to F Female Adaptor

XFS

Adaptor: Coax (TV aerial) socket (female) to F (Satellite or Cable TV) socket. All metal. Joins a Coax Plug to and F Plug.

£1.00

(inc VAT £1.20)
Quantity

Coaxial Female to F Male Adaptor

XOF

Adaptor: Coax (TV aerial) socket (female) to F plug (male). Fully Screened.Nickel Plating

£1.25

(inc VAT £1.50)
Quantity

Compact 2x55W Stereo PA amplifier with built in media player and under counter mounts

A22

Digital stereo PA amplifier with integral media player in a compact housing

This compact class-D amplifier can deliver up to 2 x 55W output, ideal for background music in a shop or restaurant. There is a microphone input that can be used for announcements.

The media player section can select between USB / microSD mp3 player, FM tuner, Bluetooth receiver, 2 stereo line inputs (rear panel RCA) and another line input on the front panel (3.5mm). Playback can be controlled from the front panel or by the supplied I.R. remote control.

Mounting brackets are provided which enable the A22 to be fitted under a counter top or against a wall for discreet installation. Two A22 units may be mounted side-by-side into a 1U rack space, which can serve smaller peripheral zones in a larger PA installation.

Combine with 2 or 4 speaker units for a truly space-saving sound system with comprehensive and easy-to-use functions.

  • Compact and easy-to-use control panel
  • Bluetooth receiver
  • FM tuner
  • USB / microSD mp3 player
  • Supplied with I.R. remote control
  • Supplied with 4 rotatable mounting brackets
  • Microphone input with separate volume control

Power supply :230Vac, 50Hz (IEC)

Speaker :      impedance 4 - 8 Ohms (each channel)

Output power : 8 Ohms 2 x 25W rms / 2 x 40W max. (@ 1kHz 10% THD)

Output power : 4 Ohms 2 x 35W rms / 2 x 55W max. (@ 1kHz 10% THD)

Inputs : Line Aux 1 (3.5mm), Aux 2 (L+R RCA), Aux 3 (L+R RCA)

Input : mic 6.3mm jack

Controls Mic Volume, Treble, Bass, Music Volume

Audio source USB/microSD player, FM tuner, Bluetooth

Antenna connection F-type (FM tuner)

Dimensions 215 x 180 x 43mm

Weight 820g

£65.00

(inc VAT £78.00)
Quantity

Compact Dual UHF Wireless Microphone Set 864.8+863.1MHz

SU20HBY

Compact Dual UHF Microphone Set 864.8+863.1MHz

Dual UHF wireless microphone system with a compact receiver, supplied with hardware for mounting 1 or 2 units into a 1U 19" rack space. Detachable antennas are provided for rear or front mounting as required. Each microphone is powered by 2 x AA batteries and colour coded for frequency (864.8MHz Blue + 863.1MHz Yellow). Output is provided individually on balanced XLR connectors or mixed to a single 6.3mm jack socket. Providing all the functionality of a dual UHF system in a compact half-rack format

  • Up to 2 sets (4 microphones) can be used together
  • Available in handheld or beltpack versions with 2 carrier frequency option
  • Front or rear mountable antennas
  • Compact half-rack receiver
  • Supplied with power adaptor and 4 x AA batteries
  • Range 60m
  • Microphone : polar pattern
  • Cardioid (handheld, neckband or lavalier)
  • Output connections 2 x balanced XLR, 1 x unbalanced 6.3mm jack
  • Output impedance 2.2k Ohms
  • Output level 400mV (balanced), 200mV (unbalanced)
  • Frequency response 50Hz - 18kHz (±3dB)
  • S/N ratio >80dB
  • THD <0.5% @ 1kHz
 

£115.00

(inc VAT £138.00)
Quantity OUT OF STOCK

Composite Video and Audio (RCA) Input to HDMI Output Converter Upscaler

COMHD

AV to HDMI converter

Upscales standard Definition video & audio to HD (HDMI) to 720P or 1080P (Switchable).

Connects older equipment without a HD output to a modern HD TV.

USB powered. 

Supported Inputs: NTSC 480i or PAL 576i

Selectable Outputs: 720P or 1080P


Package Contents
HDMI converter
USB cable

£15.00

£10.00

(inc VAT £12.00) 33% Off
Quantity

Composite Video Input to VGA Output Converter

AV2VGA

Composite Video to VGA Converter
Converts a Composite (TV) signal to VGA signal with phono (RCA) outputs (BNC adaptor available see BPP). VGA output resolutions up to 1920x1080. Small size, powered from a USB socket it can connect to HD CCTV,  PCs, etc. 


*  Pure hardware design,  just Plug & Play
*  No software driver requirement.
*  Supports VGA resolutions 640x480 at 60 fps; 800x600 60 fps, 75 fps; 1024x768 60 fps, 75 fps; 1280x720 at 60 fps; 1280x768 60 fps, 75 fps; 1280x1024 60 fps, 75 fps; 1360x768 at 60 fps; 1400x1050 60 fps; 1440x900 60 fps; 1680x1050 at 60 fps; 1600x1200 60 fps; 1920x1080 60 fps resolutions.
*  Inputs: Composite Video and Stereo Audio (RCA), and USB (power)
*  Outputs: VGA, 3.5mm line out
*  Powered from USB port
*  PAL or NTSC system

Package contents:
Composite to VGA converter
Manual
USB Power cable

£15.00

(inc VAT £18.00)
Quantity

Compression Horn Driver 200W Max 100W RMS

CH100

100 Watt Comprossion Horn Driver - 200W max 100W rms

Reflector horn with 1inch throat, and1¾ inch thread.

Should be connected through a cross-over or capacitor approx 3.3uF bipolar

*  Titanium diaphragm
*  Kapton bobbin
*  Copper clad aluminium voice coil
*  Gold plated spring terminals

Impedance: 8 ohms
Frequency Response: 1500Hz-20000Hz
Diameter: 90mm
Length: 63mm

15 oz Magnet
Power: 100 WattsRMS, 200W Max
SPL @ 1W/1m : 95dB

£22.00

(inc VAT £26.40)
Quantity
Page of 460