Stufin
Home Quick Cart Profile

Lucky 3 Straight Tweezer

Buy Now on Stufin

Operating Voltage

5V DC

Current Consumption

500mA (max)

Servo Resolution

0.1

Grip Force

0.1-10 N (adjustable)

Object Size Range

1-10 mm (adjustable)

Positioning Accuracy

0.05 mm

Operating Temperature

-20C to 80C

Communication Protocol

UART, I2C, SPI (programmable)

Applications

The Lucky 3 Straight Tweezer is suitable for a wide range of IoT applications, including

Robotics and automation

Precision assembly and manufacturing

Laboratory and medical research

Quality control and inspection

Electronics and PCB assembly

Conclusion

The Lucky 3 Straight Tweezer is a versatile and precise IoT component that offers unmatched performance and reliability in delicate object manipulation and handling. Its unique combination of features, compact design, and programmable interface make it an ideal choice for a variety of applications that require high precision and accuracy.

Pin Configuration

  • Lucky 3 Straight Tweezer Component Documentation
  • Pin Description:
  • The Lucky 3 Straight Tweezer component has a total of 6 pins, each with a specific function. Below is a detailed description of each pin and its corresponding functionality:
  • Pin 1: VCC (Power Supply)
  • Function: Provides power to the component
  • Voltage: Typically 3.3V or 5V, depending on the specific application
  • Connection: Connect to the positive terminal of the power source (e.g., a battery or a voltage regulator output)
  • Pin 2: GND (Ground)
  • Function: Provides a common ground reference for the component
  • Connection: Connect to the negative terminal of the power source (e.g., a battery or a voltage regulator output) or a common ground point in the circuit
  • Pin 3: SIG (Signal Input)
  • Function: Receives the input signal from a sensor or another component
  • Signal Type: Typically a digital signal (0V to VCC) or an analog signal (0V to VCC) with a specific voltage range
  • Connection: Connect to the output of a sensor or another component that provides the input signal
  • Pin 4: EN (Enable)
  • Function: Enables or disables the component's operation
  • Logic: Typically active-high (i.e., a high voltage level enables the component, and a low voltage level disables it)
  • Connection: Connect to a digital output from a microcontroller or another component that controls the enable signal
  • Pin 5: DAT (Data Output)
  • Function: Provides the processed data output from the component
  • Signal Type: Typically a digital signal (0V to VCC) or an analog signal (0V to VCC) with a specific voltage range
  • Connection: Connect to the input of a microcontroller or another component that receives the data output
  • Pin 6: NC (No Connection)
  • Function: Not connected internally and should be left unconnected
  • Connection: Do not connect this pin to any signal or voltage source
  • Connection Structure:
  • When connecting the Lucky 3 Straight Tweezer component, follow this structure:
  • 1. Connect Pin 1 (VCC) to the positive terminal of the power source.
  • 2. Connect Pin 2 (GND) to the negative terminal of the power source or a common ground point in the circuit.
  • 3. Connect Pin 3 (SIG) to the output of a sensor or another component that provides the input signal.
  • 4. Connect Pin 4 (EN) to a digital output from a microcontroller or another component that controls the enable signal.
  • 5. Connect Pin 5 (DAT) to the input of a microcontroller or another component that receives the data output.
  • 6. Leave Pin 6 (NC) unconnected.
  • Important Notes:
  • Ensure proper voltage and current ratings for the power source and the connected components.
  • Verify the signal type and voltage range compatibility between the Lucky 3 Straight Tweezer component and the connected components.
  • Follow the recommended connection structure and avoid short-circuiting any pins to prevent damage to the component or the entire circuit.

Code Examples

Lucky 3 Straight Tweezer Documentation
Overview
The Lucky 3 Straight Tweezer is a precision electro-mechanical component designed for IoT applications that require grasping and manipulation of small objects. This component features three straight, parallel tweezers with a high degree of precision and flexibility, making it ideal for tasks such as pick-and-place assembly, material handling, and quality control inspection.
Technical Specifications
Operating Voltage: 5V DC
 Operating Current: 100mA
 Tweezer Material: Stainless Steel
 Tweezer Length: 30mm
 Tweezer Width: 2mm
 Stroke Range: 10mm
 Repeatability: 0.1mm
Code Examples
### Example 1: Basic Tweezer Control using Arduino
This example demonstrates how to control the Lucky 3 Straight Tweezer using an Arduino board.
```c++
const int tweenerPin = 9;  // PWM pin for tweener control
void setup() {
  pinMode(tweenerPin, OUTPUT);
}
void loop() {
  // Open tweezers (stroke = 10mm)
  analogWrite(tweenerPin, 255);
  delay(1000);
// Close tweezers (stroke = 0mm)
  analogWrite(tweenerPin, 0);
  delay(1000);
}
```
In this example, we connect the tweener pin to a PWM-capable digital pin on the Arduino board. We then use the `analogWrite()` function to set the PWM duty cycle to 0 (0mm stroke) or 255 (10mm stroke), effectively opening and closing the tweezers.
### Example 2: Tweezer Control using Python and Raspberry Pi
This example demonstrates how to control the Lucky 3 Straight Tweezer using a Raspberry Pi and Python.
```python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
tweenerPin = 18  # GPIO pin for tweener control
GPIO.setup(tweenerPin, GPIO.OUT)
while True:
    # Open tweezers (stroke = 10mm)
    GPIO.output(tweenerPin, GPIO.HIGH)
    time.sleep(1)
# Close tweezers (stroke = 0mm)
    GPIO.output(tweenerPin, GPIO.LOW)
    time.sleep(1)
```
In this example, we use the RPi.GPIO library to set up the GPIO pin for output and control the tweener using the `GPIO.output()` function. We toggle the pin high (10mm stroke) and low (0mm stroke) to open and close the tweezers.
Note: These examples are for illustrative purposes only and may require modifications to suit your specific application and setup.