

The Cobalt Digital IP Point Motor (DCP-CB1DIP), manufactured by Layout Supplies, is a networked motor control device designed for precise positioning of points in digital broadcasting and media applications. This component enables remote operation and seamless integration into IP-based systems, making it ideal for modern, automated setups. Its robust design ensures reliable performance in demanding environments.








| Parameter | Value |
|---|---|
| Manufacturer | Layout Supplies |
| Part ID | DCP-CB1DIP |
| Operating Voltage | 12V DC |
| Operating Current | 500mA (typical), 1A (max) |
| Communication Protocol | TCP/IP |
| Network Interface | RJ45 Ethernet Port |
| Positioning Accuracy | ±0.1° |
| Maximum Load | 2 kg |
| Operating Temperature Range | -10°C to 50°C |
| Dimensions | 120mm x 80mm x 40mm |
| Weight | 250g |
The Cobalt Digital IP Point Motor features a terminal block for power and control connections, as well as an RJ45 Ethernet port for network communication.
| Pin Number | Label | Description |
|---|---|---|
| 1 | V+ | Positive power supply input (12V DC) |
| 2 | GND | Ground connection |
| 3 | IN1 | Input signal for manual control (optional) |
| 4 | IN2 | Input signal for manual control (optional) |
| 5 | OUT1 | Output signal for status monitoring |
| 6 | OUT2 | Output signal for status monitoring |
The Ethernet port is used for communication with IP-based systems. It supports standard TCP/IP protocols for remote control and monitoring.
Although the Cobalt Digital IP Point Motor is primarily designed for IP-based systems, it can be controlled using an Arduino UNO with an Ethernet shield. Below is an example of how to send commands to the motor:
#include <SPI.h>
#include <Ethernet.h>
// Define the MAC address and IP address for the Arduino Ethernet shield
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
IPAddress ip(192, 168, 1, 177); // Replace with your desired IP address
IPAddress motorIP(192, 168, 1, 100); // Replace with the motor's IP address
EthernetClient client;
void setup() {
// Initialize Ethernet connection
Ethernet.begin(mac, ip);
Serial.begin(9600);
delay(1000); // Allow time for Ethernet to initialize
// Connect to the motor
if (client.connect(motorIP, 80)) {
Serial.println("Connected to motor");
// Send a command to move the motor to position 45°
client.println("MOVE 45");
client.stop();
} else {
Serial.println("Connection failed");
}
}
void loop() {
// No actions in the loop for this example
}
Motor Does Not Respond to Commands
Motor Overheats
Erratic Movement
No Network Connection
Q: Can the motor be used without a network connection?
A: Yes, the motor can be controlled manually using the IN1 and IN2 pins.
Q: Is the motor compatible with PoE (Power over Ethernet)?
A: No, the motor requires a separate 12V DC power supply.
Q: How do I reset the motor to factory settings?
A: Press and hold the reset button (if available) for 10 seconds while powering on the device.
Q: Can I control multiple motors on the same network?
A: Yes, assign a unique IP address to each motor to avoid conflicts.
This documentation provides a comprehensive guide to using the Cobalt Digital IP Point Motor (DCP-CB1DIP) effectively in your projects. For further assistance, refer to the manufacturer's support resources.