10.5 cm x 3.5 cm (4.1 inches x 1.4 inches)
10.5 cm x 3.5 cm (4.1 inches x 1.4 inches)
840
2.54 mm (0.1 inches)
2.54 mm (0.1 inches)
-20C to 80C (-4F to 176F)
Packaging and Accessories
The WB-102 840 Points Solderless Breadboard typically comes with a self-adhesive backing and may include additional accessories, such as jumper wires, breadboard wires, or a carrying case, depending on the supplier.
WB-102 840 Points Solderless Breadboard Documentation
Overview
The WB-102 840 Points Solderless Breadboard is a versatile and convenient prototyping board designed for building and testing electronic circuits. It features 840 points of connection, making it an ideal choice for complex projects. This breadboard is solderless, allowing for easy component insertion and removal, and is compatible with a wide range of components, including through-hole, surface-mount, and jumper wires.
Features
840 points of connection
Solderless design for easy component insertion and removal
Compatible with through-hole, surface-mount, and jumper wires
Large working area for complex projects
Durable construction for repeated use
Code Examples
### Example 1: Simple LED Circuit using Arduino
In this example, we will create a simple LED circuit using an Arduino Uno and the WB-102 breadboard.
Hardware Requirements
Arduino Uno
WB-102 840 Points Solderless Breadboard
LED (any color)
220 Resistor
Jumper wires
Code
```c++
const int ledPin = 13; // Choose any digital pin on the Arduino
void setup() {
pinMode(ledPin, OUTPUT);
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
```
Breadboard Connections
Connect the LED to digital pin 13 on the Arduino
Connect the 220 resistor to the LED and the GND pin on the Arduino
Use jumper wires to connect the components to the WB-102 breadboard
### Example 2: IoT Sensor Node using ESP8266
In this example, we will create an IoT sensor node using an ESP8266 microcontroller and the WB-102 breadboard.
Hardware Requirements
ESP8266 microcontroller (e.g., ESP-12E)
WB-102 840 Points Solderless Breadboard
DHT11 temperature and humidity sensor
Jumper wires
Code
```c++
#include <WiFi.h>
#include <DHT.h>
#define DHTPIN 2 // Choose any digital pin on the ESP8266
DHT dht(DHTPIN, DHT11);
const char ssid = "your_wifi_ssid";
const char password = "your_wifi_password";
void setup() {
Serial.begin(115200);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(1000);
Serial.println("Connecting to WiFi...");
}
Serial.println("Connected to WiFi");
dht.begin();
}
void loop() {
float temperature = dht.readTemperature();
float humidity = dht.readHumidity();
Serial.print("Temperature: ");
Serial.print(temperature);
Serial.println("C");
Serial.print("Humidity: ");
Serial.print(humidity);
Serial.println("%");
delay(5000);
}
```
Breadboard Connections
Connect the DHT11 sensor to digital pin 2 on the ESP8266
Use jumper wires to connect the ESP8266 to the WB-102 breadboard
Connect the ESP8266 to your computer using a USB cable for programming and serial monitoring
These examples demonstrate the versatility of the WB-102 840 Points Solderless Breadboard in various IoT applications.