A greyboard, manufactured by Greycode (Part ID: Greycode), is a type of cardboard commonly used in electronics for prototyping circuits. It provides a sturdy, non-conductive base for mounting components, making it ideal for DIY projects, educational purposes, and temporary circuit setups. Greyboards are lightweight, cost-effective, and easy to cut or shape, making them a popular choice for hobbyists and students.
While greyboards are not electronic components themselves, their physical properties are important for their use in electronics. Below are the key specifications:
Property | Specification |
---|---|
Material | Compressed cardboard (non-conductive) |
Thickness | 1.5 mm to 3 mm (varies by model) |
Dimensions | Typically 300 mm x 300 mm (customizable) |
Weight | ~0.5 kg/m² |
Surface Finish | Matte |
Temperature Tolerance | Up to 80°C (short-term exposure) |
Electrical Conductivity | Non-conductive |
As a non-electronic component, the greyboard does not have pins or electrical connections. However, it serves as a physical base for mounting components such as resistors, capacitors, and ICs.
Greyboards are often used as a base for Arduino projects. Below is an example of how to mount an Arduino UNO and connect an LED circuit:
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the LED's longer leg (anode) is connected to pin 13, and the shorter
// leg (cathode) is connected to GND through a 220-ohm resistor.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Components Falling Off:
Circuit Malfunction:
Greyboard Warping:
Difficulty Cutting the Greyboard:
Q: Can I reuse a greyboard for multiple projects?
A: Yes, as long as the greyboard is not damaged or warped, it can be reused. Remove old components carefully to avoid tearing the surface.
Q: Is the greyboard safe for high-voltage circuits?
A: Greyboards are non-conductive but not designed for high-voltage applications. Use caution and ensure proper insulation.
Q: Can I paint or decorate the greyboard?
A: Yes, you can paint or decorate the greyboard to enhance its appearance. Use non-conductive paints to avoid affecting the circuit.
Q: How do I clean a greyboard?
A: Use a dry cloth or a soft brush to remove dust. Avoid using water or cleaning solutions, as they can damage the material.