在线观看www成人影院-在线观看www日本免费网站-在线观看www视频-在线观看操-欧美18在线-欧美1级

電子發燒友App

硬聲App

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示
電子發燒友網>電子資料下載>電子資料>用Arduino控制小型線性執行器

用Arduino控制小型線性執行器

2022-12-29 | zip | 0.07 MB | 次下載 | 2積分

資料介紹

描述

Arduino 線性致動器教程展示了如何使用 Arduino 兼容板和各種輸入傳感器控制Firgelli 小型線性致動器,包括用于直接控制的滑塊和旋轉旋鈕、用于增量移動的操縱桿以及具有預設位置的三個按鈕(在代碼中預設)每個位置都分配給一個按鈕,因此當用戶按下按鈕時,小型線性執行器會移動到該位置)。

對于 Arduino 線性執行器項目,Firgelli 的小型線性執行器非常出色。這些線性執行器有一個內部控制器,允許它們像伺服一樣操作。通過使用 Arduino 伺服庫,我們可以簡單地向執行器發送所需的位置,然后它移動到該位置。

?
pYYBAGOrsaSAUMfpAAEEY55FT0o219.jpg
?

所有部件都可以在RobotGeek Arduino 線性執行器實驗者套件中一起找到,或者單獨獲得。

第 1 步:接線

?
pYYBAGOrsaaASh7RAAEZVDA8ofQ319.jpg
?

?

?
poYBAGOrsauAd201AACTp_8gWfU133.png
?

請注意,您必須將線性致動器物理插入不同的端口才能使用不同的控件移動它。如果您有多個線性執行器,您可以使用此代碼同時控制多達 4 個。

第 2 步:將代碼上傳到您的 Arduino

您可以在RobotGeek 庫和工具中的以下位置找到此演示代碼

RobotGeekSketches -> Demos -> LinearActuator -> linearActuatorExpDemo -> linearActuatorExpDemo.ino

這段代碼將幫助我們完成接下來的三個部分。根據您正在學習的教程部分,您將被要求將線性致動器插入不同的引腳。

/***********************************************************************************
 *           RobotGeek Linear Actuator Experimenter's Kit Demo   
 *        ________   
 *       |        \---------\___________________________
 *     __|                  |                          ||--------------------|__
 *    (o |  FIRGELLI        |                        o ||____________________| o)
 *       |__________________/--------------------------||                   
 * 
 *
 *  The following sketch will allow you to control a Firgelli Linear actuator using
 *  the RobotGeek Slider, RobotGeek Knob, RobotGeek Joystick, and RobotGeek Pushbuttons
 *
 *  http://www.robotgeek.com/robotgeek-experimenters-kit-linear-actuator
 *  
 *    
 *  Wiring
 *    Linear Actuator - Digital Pin 6, 9, 10, and/or 11
 *
 *    Knob            - Analog Pin 0
 *    Joystick        - Analog Pin 1 
 *    Slider          - Analog Pin 2
 *    
 *    Pushbutton      - Digital Pin 2
 *    Pushbutton      - Digital Pin 4
 *    Pushbutton      - Digital Pin 7
 *    
 *    Jumpers for pins 3/5/6 and 9/10/11 should be set to 'VIN'
 *  
 *
 *  Control Behavior:
 *    Moving the slider or knob will move the linear actuator keeping absolute position.
 *    Moving the joystick will move the linear actuator incrementally.
 *    Pressing one of the buttons will move the linear actuator to a predetermined position.
 *
 ***********************************************************************************/
//Includes
#include  //Servo Library can be used for Firgelli Mini Linear Actuators
//Linear Actuator Pins
const int LINEARPIN_BUTTON = 6;        //Linear Actuator on Digital Pin 6
const int LINEARPIN_KNOB = 9;          //Linear Actuator on Digital Pin 9
const int LINEARPIN_SLIDER = 10;       //Linear Actuator on Digital Pin 10
const int LINEARPIN_JOYSTICK = 11;     //Linear Actuator on Digital Pin 11
//Analog Input Pins
const int KNOB_PIN = 0;       //Knob on Analog Pin 0
const int JOYSTICK_PIN = 1;   //Joystick (vertical) on Analog Pin 1
const int SLIDER_PIN = 2;     //Slider on Analog Pin 2
//Digital Input Pins 
const int BUTTON1_PIN = 2;     //Button 1 on Digital Pin 2
const int BUTTON2_PIN = 4;     //Button 2 on Digital Pin 4
const int BUTTON3_PIN = 7;     //Button 3 on Digital Pin 7
//Generic deadband limits - not all joystics will center at 512, so these limits remove 'drift' from joysticks that are off-center.
const int DEADBAND_LOW = 482;   //decrease this value if drift occurs, increase it to increase sensitivity around the center position
const int DEADBAND_HIGH = 542;  //increase this value if drift occurs, decrease it to increase sensitivity around the center position
//Max/min pulse values in microseconds for the linear actuators
const int LINEAR_MIN = 1050;        
const int LINEAR_MAX = 2000;         
// variables will change:
int button1State = 0;         // variable for reading the pushbutton status
int button2State = 0;         // variable for reading the pushbutton status
int button3State = 0;         // variable for reading the pushbutton status
Servo linearKnob, linearSlider, linearButton, linearJoystick;  // create servo objects to control the linear actuators
int knobValue, sliderValue, joystickValue;                     //variables to hold the last reading from the analog pins. The value will be between 0 and 1023
int valueMapped;                                               // the joystick values will be changed (or 'mapped') to new values to be sent to the linear actuator.
//variables for current positional value being sent to the linear actuator. 
int linearValue_Knob = 1500;                                   
int linearValue_Slider = 1500;    
int linearValue_Button = 1500;
int linearValue_Joystick = 1500; 
int speed = 2;
void setup() 
{ 
  //initialize linear actuators as servo objects
  linearKnob.attach(LINEARPIN_KNOB);      // attaches/activates the linear actuator as a servo object 
  linearSlider.attach(LINEARPIN_SLIDER);  // attaches/activates the linear actuator as a servo object 
  linearButton.attach(LINEARPIN_BUTTON);  // attaches/activates the linear actuator as a servo object 
  linearJoystick.attach(LINEARPIN_JOYSTICK);  // attaches/activates the linear actuator as a servo object 
  //Analog pins do not need to be initialized
  
  //use the writeMicroseconds to set the linear actuators to their default positions
  linearKnob.writeMicroseconds(linearValue_Knob); 
  linearSlider.writeMicroseconds(linearValue_Slider);
  linearButton.writeMicroseconds(linearValue_Button);
  linearJoystick.writeMicroseconds(linearValue_Joystick);
} 
void loop() 
{ 
//Preset Positions for Button Control
  // if the pushbutton is pressed set the linear value
  button1State = digitalRead(BUTTON1_PIN);
  if (button1State == HIGH) {    
    // set the position value  
    linearValue_Button = 1300;  
  } 
  button2State = digitalRead(BUTTON2_PIN);
  if (button2State == HIGH) {     
    // set the position value   
    linearValue_Button = 1500;  
  } 
  button3State = digitalRead(BUTTON3_PIN);  
  if (button3State == HIGH) {     
    // set the position value   
    linearValue_Button = 1700;  
  }   
//Analog Direct Control 
  //read the values from the analog sensors
  knobValue = analogRead(KNOB_PIN);
  sliderValue = analogRead(SLIDER_PIN);
  linearValue_Knob = map(knobValue, 0, 1023, LINEAR_MAX, LINEAR_MIN); //Map analog value from the sensor to the linear actuator
  linearValue_Slider = map(sliderValue, 0, 1023, LINEAR_MAX, LINEAR_MIN); //Map analog value from the sensor to the linear actuator
//Incremental Joystick Control
  joystickValue = analogRead(JOYSTICK_PIN); //read the values from the joystick
  //only update if the joystick is outside the deadzone (i.e. moved oustide the center position)
   if(joystickValue > DEADBAND_HIGH || joystickValue < DEADBAND_LOW)
   {
     valueMapped = map(joystickValue, 0, 1023, speed, -speed); //Map analog value from native joystick value (0 to 1023) to incremental change (speed to -speed).
     linearValue_Joystick = linearValue_Joystick + valueMapped; //add mapped joystick value to present Value
     
     linearValue_Joystick = constrain(linearValue_Joystick, LINEAR_MIN, LINEAR_MAX);  //
   }
//Use the writeMicroseconds to set the linear actuator to its new position
  linearKnob.writeMicroseconds(linearValue_Knob); 
  linearSlider.writeMicroseconds(linearValue_Slider);
  linearButton.writeMicroseconds(linearValue_Button);
  linearJoystick.writeMicroseconds(linearValue_Joystick);
  delay(10);
} 

第 3 步:模擬直接控制

?

對于本節:

要使用旋轉旋鈕,請將線性執行器插入Digital Pin 9

要使用滑塊,請將線性執行器插入Digital Pin 10

那么這是怎么回事?我們正在將模擬傳感器的絕對位置映射到執行器位置。這是有道理的,您將旋轉旋鈕或滑塊移動到一個位置,并且線性執行器與該位置匹配。

想看廢話嗎?操縱桿插入Analog Pin 0 ,將線性執行器插入Digital Pin 9 。操縱桿始終返回到中心位置,導致線性執行器匹配并返回到其中心值。如果您想使用操縱桿將線性致動器移動到中心以外的位置,那么這并不是那么有用,這將我們帶到下一節。在繼續之前,請確保將傳感器恢復到原來的引腳。

如果您想要僅涵蓋本教程這一部分的草圖,可以在此處找到它。

?

第 4 步:增量控制

?

對于本節:

要使用操縱桿,請將線性執行器插入Digital Pin 11

那么這是怎么回事?這一次,我們不是直接映射到操縱桿的值,而是使用操縱桿來增加線性致動器的位置,這樣我們就可以放開操縱桿,讓線性致動器保持在上次放置的位置。

如果您想要僅涵蓋本教程這一部分的草圖,可以在此處找到它。

?

第 5 步:預設控件

?

對于本節:

要使用按鈕,請將線性執行器插入Digital Pin 6

那么這是怎么回事?在這一部分中,我們使用按鈕按下將線性執行器發送到預定義的位置。當您知道在輸入定義的情況下您希望線性致動器處于什么位置時,這非常簡單且非常有用。

如果您想要僅涵蓋本教程這一部分的草圖,可以在此處找到它。

?

第 6 步:下一步是什么?

?

現在您知道了三種控制直線推桿的方法。你能想到可以從中受益的項目嗎?您有想要自動打開的盒子嗎?您將如何使用線性致動器來做到這一點?人體的所有肌肉都是生物線性致動器。你能做一個模仿這個的機械臂嗎?做一張可以傾斜的桌子怎么樣?我們很想聽聽您的項目!去創造吧!


下載該資料的人也在下載 下載該資料的人還在閱讀
更多 >

評論

查看更多

下載排行

本周

  1. 1山景DSP芯片AP8248A2數據手冊
  2. 1.06 MB  |  532次下載  |  免費
  3. 2RK3399完整板原理圖(支持平板,盒子VR)
  4. 3.28 MB  |  339次下載  |  免費
  5. 3TC358743XBG評估板參考手冊
  6. 1.36 MB  |  330次下載  |  免費
  7. 4DFM軟件使用教程
  8. 0.84 MB  |  295次下載  |  免費
  9. 5元宇宙深度解析—未來的未來-風口還是泡沫
  10. 6.40 MB  |  227次下載  |  免費
  11. 6迪文DGUS開發指南
  12. 31.67 MB  |  194次下載  |  免費
  13. 7元宇宙底層硬件系列報告
  14. 13.42 MB  |  182次下載  |  免費
  15. 8FP5207XR-G1中文應用手冊
  16. 1.09 MB  |  178次下載  |  免費

本月

  1. 1OrCAD10.5下載OrCAD10.5中文版軟件
  2. 0.00 MB  |  234315次下載  |  免費
  3. 2555集成電路應用800例(新編版)
  4. 0.00 MB  |  33566次下載  |  免費
  5. 3接口電路圖大全
  6. 未知  |  30323次下載  |  免費
  7. 4開關電源設計實例指南
  8. 未知  |  21549次下載  |  免費
  9. 5電氣工程師手冊免費下載(新編第二版pdf電子書)
  10. 0.00 MB  |  15349次下載  |  免費
  11. 6數字電路基礎pdf(下載)
  12. 未知  |  13750次下載  |  免費
  13. 7電子制作實例集錦 下載
  14. 未知  |  8113次下載  |  免費
  15. 8《LED驅動電路設計》 溫德爾著
  16. 0.00 MB  |  6656次下載  |  免費

總榜

  1. 1matlab軟件下載入口
  2. 未知  |  935054次下載  |  免費
  3. 2protel99se軟件下載(可英文版轉中文版)
  4. 78.1 MB  |  537798次下載  |  免費
  5. 3MATLAB 7.1 下載 (含軟件介紹)
  6. 未知  |  420027次下載  |  免費
  7. 4OrCAD10.5下載OrCAD10.5中文版軟件
  8. 0.00 MB  |  234315次下載  |  免費
  9. 5Altium DXP2002下載入口
  10. 未知  |  233046次下載  |  免費
  11. 6電路仿真軟件multisim 10.0免費下載
  12. 340992  |  191187次下載  |  免費
  13. 7十天學會AVR單片機與C語言視頻教程 下載
  14. 158M  |  183279次下載  |  免費
  15. 8proe5.0野火版下載(中文版免費下載)
  16. 未知  |  138040次下載  |  免費
主站蜘蛛池模板: 一区二区三区久久 | 亚洲人成人77777网站 | 天天在线精品视频在线观看 | 欧美四色 | 色色视频免费网 | 亚洲最大成人网色 | 狠狠色丁香六月色 | 黄色三级三级三级免费看 | 最近2018中文字幕免费视频 | 亚洲jizzjizz在线播放久 | 国产h在线观看 | 女人张腿让男桶免费视频网站 | 成年美女黄网站色大免费视频 | aa2424在线视频看片 | 午夜伦伦 | 日日日干干干 | zzji国产精品视频 | 色在线看| 天天操天天操天天操香蕉 | 午夜久久久精品 | 欧美成人h精品网站 | 日本污全彩肉肉无遮挡彩色 | www.夜夜爽 | 又色又爽又黄视频 | 美女扒开尿口让男生添 漫画 | 扒开双腿疯狂进出爽爽爽 | 欧美日穴| 欧美激情亚洲色图 | 黄色伊人 | 色综合色综合色综合色综合 | 无遮挡很爽很污很黄很色的网站 | 日本69xxx| 你懂的在线免费观看 | 男人j进女人j视频 | 久久色婷婷 | 精品你懂的 | 精品久久看 | 一区在线免费观看 | 俺来也俺来也天天夜夜视频 | 玖玖国产| 网站四虎1515hhcom |