0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

絞車的制作教程

454398 ? 來源:wv ? 2019-09-05 10:20 ? 次閱讀

步驟1:零件

絞車的制作教程

要復(fù)制此內(nèi)容,您需要收集一些部分。我開始為這個(gè)項(xiàng)目采購電機(jī),并且能夠在eBay上找到兩個(gè)Jazzy牌輪椅電機(jī)。我用于這個(gè)項(xiàng)目的其他部分是:

()2 Arduino Uno板

(2)nRF24L01收發(fā)器,帶背包

(1)SyRen10電機(jī)驅(qū)動(dòng)器

(1)24伏電源

(1)5伏電源

10k歐姆電阻器

瞬時(shí)按鈕

3d印刷材料

制造材料 - 用于底盤,螺釘,螺栓等的鋼材

第2步:制造

我做的第一步是測試電機(jī)并確保它能正常工作。我測試了接線,并找出了哪些電線連接到電磁制動(dòng)器以及哪些電線連接到電機(jī)。通過向制動(dòng)器運(yùn)行24伏電壓,它們將釋放并允許電動(dòng)機(jī)自由轉(zhuǎn)動(dòng)。

我開始為3英寸電纜卷筒打印三維部件,電纜卷筒位于電機(jī)軸上。我用鋼板切割了兩個(gè)5英寸的圓盤,并在鉆孔后將它們安裝在兩側(cè)。 3d打印的鼓。我焊接了一個(gè)底盤,用一個(gè)1英寸的箱形鋼管將電機(jī)擰緊。裝配好電纜卷筒并將絞盤安裝到底盤后,我準(zhǔn)備從硬件上移開。

第3步:軟件

編碼經(jīng)過多次測試迭代,找出最佳方法無線控制。一個(gè)版本有一個(gè)旋鈕控制速度和方向與GO按鈕。這非常方便動(dòng)態(tài)調(diào)整,但不可重復(fù)。

代碼的最終版本設(shè)計(jì)可編程根據(jù)命令執(zhí)行的提示。對于這個(gè)版本,只有兩個(gè)提示可供選擇,這些提示在Arduino軟件中編程。那些在他們的工具包中有超過3個(gè)按鈕的人可以輕松擴(kuò)展功能。選擇提示加載將信息輸入當(dāng)前提示,然后按住GO按鈕命令電機(jī)移動(dòng)。釋放按鈕自動(dòng)y停止電機(jī),作為一種死人開關(guān)。最后,作為一種緊急停止,通過翻轉(zhuǎn)電源板上的開關(guān)或從墻上拔下電源來切斷電機(jī)電源,將使制動(dòng)器停止并停止電機(jī)。

我的發(fā)射器代碼嵌入在下面。

/* Transmitter Code

* Code to store a cue and transmit it with a RF24L01+ to a receiver

* Credit to Mark Hughes for sharing his remote control project that

* helped me understand and debug my nRF24L01 setup

*

* This is the code for the transmitter portion for my winch project.

* It consists of 2 buttons, each with cue information, and a third button

* which is the “GO” button. Pressing and holding the button transmits to

* the receiver the information for the motor controller.

*

* Hook Up from nRF24L01

* Gnd to GND

* VCC to VCC

* CE to Digital 9

* CSN to Digital 10

* SCK to Digital 13

* MOSI to Digital 11

* MISO to Digital 12

* IRQ to Digital 8

*/

#include SPI.h

#include RF24.h

// Radio Configuration

RF24 radio(9,10);

byte addresses[][6] = {“1Node”,“2Node”};

bool radioNumber=1;

bool role = 1; //Control transmit 1/receive 0

//hardware attachments

const int GoButton = 4; //hold button to run loaded cue

const int Cue1 = 3; //press button to load cue

const int Cue2 = 2; //press button to load cue

const int ledPin = LED_BUILTIN; //LED flashes for debug purposes

//variables

int GoButtonState = 0;

int Cue1State = 0;

int Cue2State = 0;

int MotorSpeed = 0;

int STOP = 0; //for deadman switch. Constant broadcast a 0 speed to winch for safety

void setup() {

// put your setup code here, to run once:

pinMode (ledPin, OUTPUT);

pinMode (GoButton, INPUT);

pinMode (Cue1, INPUT);

pinMode (Cue2, INPUT);

Serial.begin(9600); // Get ready to send data back for debugging purposes

radio.begin(); // Get the transmitter ready

radio.setPALevel(RF24_PA_LOW); // Set the power to low

radio.openWritingPipe(addresses[1]); // Where we send data out

radio.openReadingPipe(1,addresses[0]);// Where we receive data back

}

void loop() {

// put your main code here, to run repeatedly:

GoButtonState = digitalRead(GoButton);

Cue1State = digitalRead(Cue1);

Cue2State = digitalRead(Cue2);

// Serial.print(ForeAft_Output);

radio.stopListening(); // Stop listening and begin transmitting

delay(50); // make delay longer for debugging

while (digitalRead(GoButton) == HIGH) {

SendMotorSignal(); //subroutine for broadcast

}

if (Cue1State == HIGH) {

MotorSpeed = -127; //speed for Cue1. Input can be from -127 to 127

digitalWrite(ledPin,HIGH); //LED flashing is helpful for debug

delay(100);

digitalWrite(ledPin, LOW);

delay(200);

}

if (Cue2State == HIGH) {

MotorSpeed = 127; //speed for Cue2. Input can be from -127 to 127

digitalWrite(ledPin, HIGH); //LED flashing is helpful for debug

delay(200);

digitalWrite(ledPin, LOW);

delay(100);

}

else {

digitalWrite(ledPin, LOW);

radio.stopListening(); // Stop listening and begin transmitting

delay(50); // make delay longer for debugging

if(radio.write(&STOP, sizeof(STOP)),Serial.println(“sent STOP”)); //Deadman switch function. Sends value of 0

radio.startListening();

//delay(50); //make delay longer for debugging

}

}

//subroutine for sending signal to motor

void SendMotorSignal() {

radio.stopListening();

delay(50); //make delay longer for debugging

if(radio.write(&MotorSpeed, sizeof(MotorSpeed)), Serial.println(“sent MotorSpeed”),(MotorSpeed));

digitalWrite(ledPin,HIGH); //LED helpful for debug

delay(100);

digitalWrite(ledPin, LOW);

delay(50);

}

對于接收器

/* Receiver Code

* Code to receive data from RF24L01+ and use it to control a motor

* Thanks to Mark Hughes for sharing his remote control project that was

* incredibly valuable to me for learning how to make the radio library function.

*

* This is the code for the receiver portion for my winch project. It listens

* for the motor speed information to be transmitted, then sends it to the SyRen

* motor controller using a simplified serial packet.

*

* The receiver is using Software Serial to have the communication line to the SyRen

* on Pin 3, primarily so that the Arduino can be plugged into the computer

* during development.

*

* Hook Up from nRF24L01

* Gnd to GND

* VCC to VCC

* CE to Digital 9

* CSN to Digital 10

* SCK to Digital 13

* MOSI to Digital 11

* MISO to Digital 12

* IRQ to Digital 8

* */

#include SoftwareSerial.h //for serial communication on a designated pin

#include SyRenSimplified.h //library for SyRen

#include SPI.h

#include RF24.h

//SyRen Config

SoftwareSerial SWSerial(NOT_A_PIN, 3); // RX on no pin (unused), TX on pin 3 (to S1)。

SyRenSimplified SR(SWSerial); // Use SWSerial as the serial port.

//Radio Configuration

bool radioNumber=0;

RF24 radio(9,10);

byte addresses[][6] = {“1Node”,“2Node”};

bool role = 0; //Control transmit/receive

// Create variables to control servo value

unsigned int MotorSpeed; // Expected range -127 to 127

void setup() {

Serial.begin(9600); // Get ready to send data back for debugging purposes

SWSerial.begin(9600); // for communication to SyRen

radio.begin(); // Initialize radio

radio.setPALevel(RF24_PA_LOW); // Set the power output to low

radio.openWritingPipe(addresses[0]);

radio.openReadingPipe(1,addresses[1]);

radio.startListening();

}

void loop() {

delay(50); //increase for debuggy, decrease to decrease jitter

if(radio.available()){

radio.read(&MotorSpeed,sizeof(MotorSpeed));

}

else {Serial.print(“No radio”);

}

//Serial.print(MotorSpeed); //for debug purposes

//Serial.print(“ ”);

//delay(100);

//delay can be helpful when debugging- can be finetuned, but no delay causes

//glitches to happen in serial monitor. I think there may be conflict

//between SWSerial to the Syren and nRF and USB serial.

SR.motor(MotorSpeed); // Command the motor to move or, where the magic happens

}

這就是編碼!

第4步:全面測試

這里有一些視頻,我正在測試車間的絞車,以及一些額外的組件圖片。

一些想法 -

底盤設(shè)計(jì)為可以以不同方向安裝,并且可以輕松添加C形夾,奶酪架或直接安裝在地板或甲板上。通過無線設(shè)置,絞車僅需120伏電源即可與其接收器一起工作。變送器只是一個(gè)獨(dú)立的電源,因此也需要一個(gè)插座插入。

速度 -

我在這兩個(gè)方向上的速度都是每秒2英尺左右以最快的速度運(yùn)行,這是一個(gè)非常好的速度,并且與JR Clancy Powerlift系統(tǒng)的速度相匹配。

容量 -

絞盤將保持10磅。它可能會(huì)持有更多,但到目前為止,我已經(jīng)把它增加了10磅。如果不對系統(tǒng)進(jìn)行破壞性測試,很難猜出故障點(diǎn)是什么。電纜是1/16“英寸的飛機(jī)電纜,斷裂強(qiáng)度為480磅。我不知道這是否會(huì)先失效,或者電機(jī)上的軸是否會(huì)斷裂,或者三維印刷滾筒是否會(huì)破碎或撕裂。

然而,對于10-20磅范圍內(nèi)的物體,我認(rèn)為這種絞盤將完美運(yùn)作。

擴(kuò)張 -

我有一些元素我還在努力。有一個(gè)編碼器和袋鼠板等待麻煩并重新安裝在系統(tǒng)上,但我很難讓編碼器和袋鼠接受對方運(yùn)行強(qiáng)制調(diào)整周期。一旦到位,絞車將具有可編程定位功能。另一個(gè)需要的項(xiàng)目是行程頂部的限位開關(guān),以防止有效載荷撞入絞盤。

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報(bào)投訴
  • 絞車
    +關(guān)注

    關(guān)注

    0

    文章

    5

    瀏覽量

    6816
收藏 人收藏

    評論

    相關(guān)推薦

    虛擬制作技術(shù)在廣告領(lǐng)域中的應(yīng)用與挑戰(zhàn)

    技術(shù)的每一次革新都為創(chuàng)意的實(shí)現(xiàn)提供了更多可能。隨著虛擬制作技術(shù)日趨成熟及其在廣告領(lǐng)域全流程的應(yīng)用,廣告內(nèi)容制作進(jìn)入到了更高效的數(shù)字化時(shí)代。在剛剛落幕的第三屆上海國際虛擬制作大會(huì)暨展覽會(huì)(VPS
    的頭像 發(fā)表于 12-06 09:39 ?418次閱讀

    絞車驅(qū)動(dòng)器中電源裝置的過壓保護(hù),制動(dòng)斬波器-EAK斬波集成電阻器

    絞車驅(qū)動(dòng)裝置中電源裝置的過電壓保護(hù) 具有特定插入電壓的制動(dòng)斬波器
    的頭像 發(fā)表于 11-23 15:53 ?163次閱讀
    <b class='flag-5'>絞車</b>驅(qū)動(dòng)器中電源裝置的過壓保護(hù),制動(dòng)斬波器-EAK斬波集成電阻器

    用NE555制作點(diǎn)焊機(jī)

    用NE555制作點(diǎn)焊機(jī),電路簡單,容易制作。需要一個(gè)12v的鉛酸蓄電池。實(shí)際焊接效果很好。
    發(fā)表于 11-08 15:05 ?5次下載

    HDI板盲孔制作常見缺陷及解決

    HDI板是一種高密度互連印刷電路板,其特點(diǎn)是線路密度高、孔徑小、層間連接復(fù)雜。在HDI板的制作過程中,盲孔的制作是一個(gè)關(guān)鍵步驟,同時(shí)也是常見的缺陷發(fā)生環(huán)節(jié)。以下是根據(jù)搜索結(jié)果總結(jié)的HDI板盲孔制作的常見缺陷及其解決方法。
    的頭像 發(fā)表于 11-02 10:33 ?285次閱讀

    什么是船上的系泊絞車,它是如何工作的?

    電阻器
    深圳崧皓電子
    發(fā)布于 :2024年11月01日 05:32:31

    AIGC在視頻內(nèi)容制作中的應(yīng)用前景

    AIGC(Artificial Intelligence Generated Content,人工智能生成內(nèi)容)在視頻內(nèi)容制作中的應(yīng)用前景廣闊,主要體現(xiàn)在以下幾個(gè)方面: 一、提高視頻內(nèi)容制作效率
    的頭像 發(fā)表于 10-25 15:44 ?565次閱讀

    開關(guān)電源設(shè)計(jì)與制作

    電子發(fā)燒友網(wǎng)站提供《開關(guān)電源設(shè)計(jì)與制作.doc》資料免費(fèi)下載
    發(fā)表于 10-24 16:36 ?6次下載

    零電感水冷電阻器用于船舶,甲板機(jī)械的絞車,降低錨和起重機(jī)

    許多船舶都有電力驅(qū)動(dòng)系統(tǒng)。這些系統(tǒng)可以是甲板機(jī)械的絞車,降低錨和起重機(jī),在牽引時(shí)保持張力,定位委托人和電力推進(jìn)。隨著能源轉(zhuǎn)型的進(jìn)行,越來越多的船舶實(shí)現(xiàn)了電動(dòng)化。電力驅(qū)動(dòng)系統(tǒng)由柴油/發(fā)電機(jī)或電池供電。該系統(tǒng)在驅(qū)動(dòng)模式下消耗電力,并將電能轉(zhuǎn)化為機(jī)械能。
    的頭像 發(fā)表于 10-08 07:48 ?202次閱讀
    零電感水冷電阻器用于船舶,甲板機(jī)械的<b class='flag-5'>絞車</b>,降低錨和起重機(jī)

    光刻掩膜版制作流程

    光刻掩膜版的制作是一個(gè)復(fù)雜且精密的過程,涉及到多個(gè)步驟和技術(shù)。以下是小編整理的光刻掩膜版制作流程: 1. 設(shè)計(jì)與準(zhǔn)備 在開始制作光刻掩膜版之前,首先需要根據(jù)電路設(shè)計(jì)制作出掩模的版圖。這
    的頭像 發(fā)表于 09-14 13:26 ?702次閱讀

    PCB電路板設(shè)計(jì)與制作的步驟和要點(diǎn)

    一站式PCBA智造廠家今天為大家講講pcb設(shè)計(jì)制作流程和要點(diǎn)是什么?PCB設(shè)計(jì)制作流程和要點(diǎn)。PCB設(shè)計(jì)是電子產(chǎn)品開發(fā)過程中的關(guān)鍵步驟之一。 PCB設(shè)計(jì)制作流程和要點(diǎn) PCB設(shè)計(jì)制作
    的頭像 發(fā)表于 08-02 09:24 ?746次閱讀

    如何使用emwin制作時(shí)鐘 ?

    請教下,使用emwin制作時(shí)鐘 ??
    發(fā)表于 04-29 06:21

    音箱制作過程圖解

    電子發(fā)燒友網(wǎng)站提供《音箱制作過程圖解.doc》資料免費(fèi)下載
    發(fā)表于 04-28 09:27 ?10次下載

    電阻柜的電阻元件如何制作?

    電阻元件的制作過程中需要嚴(yán)格遵守相關(guān)的工藝規(guī)范和安全操作規(guī)程,以確保電阻元件的質(zhì)量和可靠性。同時(shí),制作過程中還需注意環(huán)保和節(jié)能,選擇環(huán)保材料和節(jié)能工藝,降低電阻柜對環(huán)境的影響。
    的頭像 發(fā)表于 03-08 15:50 ?432次閱讀
    電阻柜的電阻元件如何<b class='flag-5'>制作</b>?

    cadence LOGO如何制作

    電子發(fā)燒友網(wǎng)站提供《cadence LOGO如何制作.docx》資料免費(fèi)下載
    發(fā)表于 03-07 14:28 ?0次下載

    電路板pcb制作過程

    電路板pcb制作過程
    的頭像 發(fā)表于 03-05 10:26 ?1274次閱讀