M5Stack 6060-PUSH

M5Stack 6060-PUSH Linear Motion Control Module

მომხმარებლის სახელმძღვანელო

1. შესავალი

The M5Stack 6060-PUSH is a versatile motion control module designed for precise linear movement within the M5Stack structural system. It integrates a high-precision stepper motor, a Mega328 microprocessor running GRBL firmware, and a robust 1515 aluminum profile frame. This module facilitates accurate displacement control through RS485 serial bus communication, making it ideal for various automation tasks.

2. მახასიათებლები

  • Integrated Microprocessor: Built-in Mega328 with GRBL firmware for motion control.
  • კომუნიკაცია: RS485 serial bus for reliable data exchange.
  • მშენებლობა: Durable 1515 aluminum profile ჩარჩო.
  • ძრავის ტიპი: 48 stepper motor, two-phase, four-wire system.
  • ინსულტი: 57mm effective linear travel.
  • შეყვანის მოცულობაtage: Wide operating range of 12-24V.
  • ძრავის სიმძლავრე: 10 W.
  • კონფიგურირებადი: Body length and effective stroke can be adapted for specific applications.

3. პაკეტის შიგთავსი

  • 1x M5Stack 6060-PUSH Linear Motion Control Module

4. აპლიკაციები

  • 3D ბეჭდვა
  • Linear Motion Control Systems
  • Automated Positioning
  • რობოტები

5. დაყენება

5.1 კომპონენტი დასრულებულიაview

Familiarize yourself with the main components of the 6060-PUSH module:

M5Stack 6060-PUSH Linear Module overview
Figure 1: M5Stack 6060-PUSH Linear Module with labeled components. Key features include the stepper motor, 1515 aluminum profile, M4 mounting holes, RS485 + 12-24V power input, and the internal Mega328 with GRBL firmware.

5.2 ფიზიკური კავშირი

The module requires a 12-24V power supply and RS485 communication for control. Use the designated terminal block for connections.

M5Stack 6060-PUSH connected to PLC BASE
სურათი 2: მაგample connection of the 6060-PUSH module to a PLC BASE, showing the RS485 and power input.

Power and RS485: Connect your 12-24V power supply and RS485 communication lines to the terminal block labeled 'RS485 + POWER 12-24V'. Ensure correct polarity for power.

მონტაჟი: The module features M4 holes for secure mounting to your desired structure or platform.

5.3 Initial Configuration (Device ID)

Before operation, you may need to set or verify the module's device ID. This is typically done via RS485 commands. For example, to set the ID to '123', you would send the command ID=123\r\n.

6. საოპერაციო ინსტრუქციები

The 6060-PUSH module is controlled using specific GRBL-like commands sent over the RS485 interface. These commands allow for checking device status, setting parameters, and controlling linear motion.

6.1 GRBL Command Reference

Below is a list of common commands and their functions:

ბრძანებააღწერაExample
Check IDRequests the current device ID.ID\r\n (returns ???\r\n)
დააყენეთ მოწყობილობის IDSets a new device ID. Replace '???' with desired ID.ID=???\r\n
Move (Absolute)Moves the motor to an absolute position. Replace '???' with ID, '???.?' with position.ID???:X???.?\r\n
Read PositionReads the current position of the motor.ID???P\r\n
Find ZeroInitiates homing sequence to find the origin.ID???Z\r\n
Set Feed SpeedSets the movement speed. Replace '????' with speed value.ID???:F????\r\n
Read Busy StatusChecks if the motor is currently busy.ID???I\r\n

შენიშვნა: \r\n represents carriage return and newline characters, which are typically required at the end of each command.

6.2 Arduino Example (Conceptual)

The following Arduino code snippet illustrates how to interact with the 6060-PUSH module using an M5Stack device. This example assumes an M5Stack with a display and buttons for interaction.

#include <M5Stack.h>
#define RX_PIN 16
#define TX_PIN 17

// ... (other definitions)

int distance = 0; // Stepper motor movement step value

// ... (header function)

void setup() {
M5.begin();
M5.Power.begin();

header("PUSH 6060", TFT_BLACK);
M5.Lcd.setTextFont(2);
M5.Lcd.setTextColor(TFT_WHITE, TFT_BLACK);
Serial2.begin(9600, SERIAL_8N1, RX_PIN, TX_PIN); // Configure Serial2
delay(500);
Serial2.print("ID=123\r\n"); // Serial2 outputs ID=123\r\n, configuring 6060 motor ID to 123
}


void loop() {
if(M5.BtnA.wasPressed()){ // Button A pressed, send ID\r\n to check 6060 motor ID
Serial2.print("ID\r\n");
}
if(M5.BtnB.wasPressed()){ // Button B pressed, send ID123:X%d\r\n to control absolute movement, where %d is the variable distance
if(distance < 50){
distance +=10;
Serial2.printf("ID123:X%d\r\n",distance);
}
}
if(M5.BtnC.wasPressed()){ // Button C pressed, send ID123Z\r\n to return motor to origin
Serial2.print("ID123Z\r\n");
}
if(Serial2.available()){ // Serial2 receives messages from 6060 and prints them
char c = Serial2.read();
Serial.print(c);
}
M5.update();
}

This code demonstrates:

  • Initializing Serial2 for RS485 communication (RX_PIN 16, TX_PIN 17).
  • Setting the module's ID (e.g., to 123).
  • Sending commands to check ID, move to an absolute position, and return to origin based on button presses.
  • Reading and printing responses from the module.

7. მოვლა

To ensure the longevity and optimal performance of your 6060-PUSH module, consider the following maintenance tips:

  • Დაიცავი სისუფთავე: Regularly clean the aluminum profile and moving parts to prevent dust and debris accumulation, which can affect smooth operation.
  • შეამოწმეთ კავშირები: Periodically inspect all electrical connections (power and RS485) to ensure they are secure and free from corrosion.
  • შეზეთვა: If the linear guide mechanism shows signs of friction or noise, apply a small amount of appropriate lubricant as recommended for linear bearings.
  • გარემო პირობები: Operate the module within its specified environmental conditions (temperature, humidity) to prevent damage.

8. Დიაგნოსტიკა

If you encounter issues with your 6060-PUSH module, try the following troubleshooting steps:

  • არანაირი მოძრაობა:
    • Verify the 12-24V power supply is correctly connected and providing adequate power.
    • Check RS485 communication lines for correct wiring and continuity.
    • Ensure the correct device ID is being used in your commands.
    • Confirm that the commands are correctly formatted, including the \r\n შეწყვეტა.
  • არასტაბილური მოძრაობა:
    • Check for mechanical obstructions on the linear guide.
    • დარწმუნდით, რომ ელექტრომომარაგება სტაბილურია და არ იცვლება.
    • Verify the baud rate and other serial parameters (e.g., 9600, SERIAL_8N1) match between your controller and the module.
  • ბრძანებებზე რეაგირების არარსებობა:
    • Confirm the RS485 transceiver is functioning correctly on both ends.
    • Use a serial monitor to check if commands are being sent and received as expected.
    • Ensure the module's ID is known and correctly addressed.

9. სპეციფიკაციები

სპეციფიკაციაპარამეტრი
ბრენდის სახელიM5Stack
მოდელის ნომერიK028 (6060-PUSH)
წარმოშობამატერიკული ჩინეთი
წმინდა წონა569.0გრ
მთლიანი წონა569.0გრ
პროდუქტის ზომა166 x 60 x 60 მმ
პაკეტის ზომა166 x 60 x 60 მმ
ინსულტი57 მმ
შეყვანის მოცულობაtage12-24 ვ
ძრავის სიმძლავრე10 W
მოყვება ბატარეაარა
მაღალი შეშფოთების შემცველი ქიმიური ნივთიერებაარცერთი
M5Stack 6060-PUSH Specifications Table
Figure 3: Detailed specifications table for the 6060-PUSH module.

10. მომხმარებლის რჩევები

  • Explore GRBL: The module utilizes GRBL firmware. Familiarizing yourself with standard GRBL commands and functionalities can unlock more advanced control options.
  • მორგებული Firmware: For highly specialized applications, consider exploring custom firmware modifications for the Mega328 to tailor the module's behavior precisely.
  • RS485 Network: When using multiple 6060-PUSH modules, ensure each has a unique device ID to prevent communication conflicts on the RS485 bus.

11. გარანტია და მხარდაჭერა

For warranty information, technical support, or further assistance, please contact the official M5Stack support channels or the retailer from whom you purchased the product. Keep your purchase receipt for any warranty claims.

დაკავშირებული დოკუმენტები - 6060-PUSH

წინასწარიview M5STACK STAMPS3 მონაცემთა ცხრილი და ტექნიკური მახასიათებლები
გამოიკვლიეთ M5STACK STAMPS3 დეველოპერული დაფა, რომელიც აღჭურვილია ESP32-S3 ჩიპით Wi-Fi-ით და Bluetooth 5 (LE)-ით. ეს მონაცემთა ფურცელი აღწერს მის აპარატურულ შემადგენლობას, პინების აღწერილობებს, ფუნქციურ შესაძლებლობებს და ელექტრო მახასიათებლებს IoT პროექტებისთვის.
წინასწარიview M5STACK Stam PLC: სამრეწველო IoT კონტროლერის მომხმარებლის სახელმძღვანელო
გაეცანით M5STACK Stam PLC-ს, სამრეწველო ავტომატიზაციისთვის განკუთვნილ IoT პროგრამირებად ლოგიკურ კონტროლერს. ეს სახელმძღვანელო დეტალურად აღწერს მის მახასიათებლებს, სპეციფიკაციებს, Arduino IDE-სთან სწრაფ დაყენების პარამეტრებს და FCC-თან შესაბამისობას. იდეალურია ჭკვიანი წარმოებისა და დისტანციური მონიტორინგისთვის.
წინასწარიview M5Stack PowerHub: პროგრამირებადი ენერგიის მართვის კონტროლერი
დეტალური ინფორმაცია M5Stack PowerHub-ის შესახებ, რომელიც წარმოადგენს ინტეგრირებულ პროგრამირებად ენერგიის მართვის კონტროლერს ESP32-S3 და STM32 კოპროცესორებით, სპეციფიკაციებით, Wi-Fi და BLE ტესტირების სწრაფი დაწყების სახელმძღვანელოთი და FCC შესაბამისობის ინფორმაციით.
წინასწარიview M5STAMP C3 ESP32 IoT-ის შემუშავების დაფის მომხმარებლის სახელმძღვანელო
გამოიკვლიეთ M5STAMP C3, M5Stack-ის ყველაზე პატარა ESP32 სისტემური დაფა. ეს სახელმძღვანელო დეტალურად აღწერს მის მახასიათებლებს, სპეციფიკაციებს და გთავაზობთ Arduino IDE, Bluetooth და WiFi-ის შემუშავების სწრაფ სახელმძღვანელოებს, რაც მას იდეალურს ხდის IoT აპლიკაციებისთვის.
წინასწარიview M5Stack CoreS3: ESP32-S3 დეველოპერის დაფის მომხმარებლის სახელმძღვანელო და ტექნიკური მახასიათებლები
გაეცანით M5Stack CoreS3-ს, ESP32-S3-ზე დაფუძნებულ დეველოპერულ დაფას, რომელიც აღჭურვილია 2 დიუმიანი TFT ეკრანით. ეს ყოვლისმომცველი სახელმძღვანელო მოიცავს სწრაფი გაშვების პროცედურებს, Arduino IDE-ს დაყენებას, Bluetooth სერიულ კომუნიკაციას, WiFi სკანირებას, პინების აღწერილობას, ფუნქციურ კავშირებს.viewპროცესორის, მეხსიერების, შენახვის, საათისა და დაბალი ენერგომოხმარების მართვის მონაცემები, დეტალურ ელექტრო მახასიათებლებთან და FCC-ის შესაბამისობის ინფორმაციასთან ერთად. იდეალურია დეველოპერებისა და მოყვარულებისთვის.
წინასწარიview M5Stack Core 2.75-ის მომხმარებლის სახელმძღვანელო და სპეციფიკაციები
ეს დოკუმენტი იძლევა ყოვლისმომცველ სურათსview M5Stack Core 2.75-ის დეტალური აღწერა, მისი სპეციფიკაციები, ფუნქციები და დაყენების ინსტრუქციები Wi-Fi-სა და BLE სკანირებისთვის Arduino IDE-ს გამოყენებით.