Hook up Wire (black) - 60 Meters
Hook up Wire (black) - 60 Meters
The Hook up Wire (black) - 60 Meters is a high-quality, flexible, and insulated copper wire designed for various applications in electronics, electrical engineering, and IoT projects. This wire is an essential component for connecting devices, sensors, and modules in a wide range of systems, from simple circuits to complex networks.
The primary function of the Hook up Wire (black) - 60 Meters is to provide a reliable, low-resistance connection between components, allowing for the transmission of electrical signals, power, and data. The wire's insulation protects against electrical shock, short circuits, and environmental factors, ensuring safe and efficient operation.
10.5 ohms/km ( 3.38 ohms/1000 feet)
100 Mkm ( 30.48 M1000 feet)
2000 V AC (rms)
The Hook up Wire (black) - 60 Meters is suitable for a wide range of applications, including |
The Hook up Wire (black) - 60 Meters meets the following industry standards and regulations |
RoHS (Restriction of Hazardous Substances) compliant
REACH (Registration, Evaluation, Authorization, and Restriction of Chemicals) compliant
UL (Underwriters Laboratories) certified
CE (Conformit Europene) marked
The wire is supplied on a sturdy cardboard spool, wrapped in a protective plastic film to prevent damage and tangling. Store the wire in a dry, cool place, away from direct sunlight and heat sources.
The Hook up Wire (black) - 60 Meters is backed by a one-year limited warranty. For technical support, please contact our dedicated support team or refer to the manufacturer's documentation and resources.
Hook up Wire (black) - 60 Meters
Overview
The Hook up Wire (black) - 60 Meters is a high-quality, insulated copper wire suitable for various electronic projects and IoT applications. This wire is ideal for connecting components, sensors, and peripherals to a microcontroller or a single-board computer.
Specifications
Wire gauge: 20 AWG (0.8 mm)
Insulation: PVC (Polyvinyl Chloride)
Length: 60 meters
Color: Black
Operating temperature: -20C to 80C
Maximum current rating: 4 A
Code Examples
### Example 1: Connecting an RGB LED to an Arduino Uno
In this example, we will connect an RGB LED to an Arduino Uno using the Hook up Wire (black) - 60 Meters. We will write a simple sketch to control the LED's color.
Hardware Requirements
Arduino Uno
RGB LED (common anode)
Hook up Wire (black) - 60 Meters
Breadboard
Software Requirements
Arduino IDE
Code
```c
const int redPin = 9; // Pin for red LED
const int greenPin = 10; // Pin for green LED
const int bluePin = 11; // Pin for blue LED
void setup() {
pinMode(redPin, OUTPUT);
pinMode(greenPin, OUTPUT);
pinMode(bluePin, OUTPUT);
}
void loop() {
// Set the color to red
digitalWrite(redPin, HIGH);
digitalWrite(greenPin, LOW);
digitalWrite(bluePin, LOW);
delay(1000);
// Set the color to green
digitalWrite(redPin, LOW);
digitalWrite(greenPin, HIGH);
digitalWrite(bluePin, LOW);
delay(1000);
// Set the color to blue
digitalWrite(redPin, LOW);
digitalWrite(greenPin, LOW);
digitalWrite(bluePin, HIGH);
delay(1000);
}
```
Connection
Connect the anode of the RGB LED to the 5V pin on the Arduino Uno using the Hook up Wire (black) - 60 Meters. Connect the cathodes of the RGB LED to digital pins 9, 10, and 11 on the Arduino Uno using the same wire.
### Example 2: Connecting a DHT11 Temperature and Humidity Sensor to a Raspberry Pi
In this example, we will connect a DHT11 temperature and humidity sensor to a Raspberry Pi using the Hook up Wire (black) - 60 Meters. We will write a Python script to read the sensor data.
Hardware Requirements
Raspberry Pi
DHT11 temperature and humidity sensor
Hook up Wire (black) - 60 Meters
Breadboard
Software Requirements
Raspbian OS
Python 3.x
Code
```python
import RPi.GPIO as GPIO
import dht11
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Define the pin for the DHT11 sensor
DHT11_PIN = 17
# Set up the DHT11 sensor
dht11_sensor = dht11.DHT11(pin=DHT11_PIN)
while True:
# Read the temperature and humidity data
temperature, humidity = dht11_sensor.read()
# Print the data
print(f"Temperature: {temperature}C, Humidity: {humidity}%")
# Wait for 1 second before reading again
time.sleep(1)
```
Connection
Connect the VCC pin of the DHT11 sensor to the 3.3V pin on the Raspberry Pi using the Hook up Wire (black) - 60 Meters. Connect the GND pin of the DHT11 sensor to the GND pin on the Raspberry Pi using the same wire. Connect the DATA pin of the DHT11 sensor to GPIO pin 17 on the Raspberry Pi using the same wire.
These examples demonstrate how to use the Hook up Wire (black) - 60 Meters to connect various components and sensors to a microcontroller or single-board computer.