FRC_7130_4th
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Help
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# 20220207~20220210 設計組寒訓 ###### tags: `工作筆記 設計組` ## 20220207 ### 蔡程翔 #### 今日進度 - 準備製作機器人的材料 - 根據設計圖組裝機器人 - 根據不合理的地方再修改一下 #### 遇到問題 - 六角軸圖有點太短 - 支撐的2跟1吋2吋管上面沒有洞可以鎖 - 鎖底部的螺絲有點卡住 - 有人鑽錯洞~ #### 解決方法 - 修改圖的長度,並多切大約2公分 - 根據要鎖的地方,然後再鑽洞 - 用長螺絲去鎖,然後會卡的地方就先用培林鑽鑽洞 - 鑽錯的那一根 重鑽 #### 心得 - 之後看圖的時候要再確定位置,不要直接鑽,因為有可能我會看錯。 ### 林聖貴 #### 今日進度 - 今日組裝了Bunper與儲球需要的皮帶輪,並且討論了未來intake改動,後便摸空與隊長一同學習robot的程式,以下為學習內容。 :::spoiler 程式碼 ```java= // Copyright (c) FIRST and other WPILib contributors. // Open Source Software; you can modify and/or share it under the terms of // the WPILib BSD license file in the root directory of this project. package frc.robot; import com.ctre.phoenix.motorcontrol.can.WPI_TalonFX; import com.ctre.phoenix.motorcontrol.can.WPI_TalonSRX; import edu.wpi.first.wpilibj.Joystick; import edu.wpi.first.wpilibj.SpeedControllerGroup; import edu.wpi.first.wpilibj.TimedRobot; import edu.wpi.first.wpilibj.drive.DifferentialDrive; import edu.wpi.first.wpilibj.smartdashboard.SendableChooser; import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard; /** * The VM is configured to automatically run this class, and to call the functions corresponding to * each mode, as described in the TimedRobot documentation. If you change the name of this class or * the package after creating this project, you must also update the build.gradle file in the * project. */ public class Robot extends TimedRobot { private static final String kDefaultAuto = "Default"; private static final String kCustomAuto = "My Auto"; private String m_autoSelected; private final SendableChooser<String> m_chooser = new SendableChooser<>(); Joystick js1 = new Joystick(0); public final int kFrontLeftChannel = 3; public final int kLeftRearChannel = 4; public final int kFrontRightChannel = 1; public final int kRearRightChannel = 2; public final int leftStick_X = 0; public final int leftStick_Y = 1; public final int rightStick_X = 4; public final int rightStick_Y = 5; public final int trigger_L = 2; public final int trigger_R = 3; public final int Btn_A = 1; public final int Btn_B = 2; public final int Btn_X = 3; public final int Btn_Y = 4; public final int Btn_LB = 5; public final int Btn_RB = 6; public final int Btn_LS = 9; public final int Btn_RS = 10; //Motor WPI_TalonSRX LeftFront = new WPI_TalonSRX(kFrontLeftChannel); WPI_TalonSRX LeftRear = new WPI_TalonSRX(kLeftRearChannel); WPI_TalonSRX RightFront = new WPI_TalonSRX(kFrontRightChannel); WPI_TalonSRX RightRear = new WPI_TalonSRX(kRearRightChannel); // SpeedControllerGroup and DifferentialDrive SpeedControllerGroup LeftMotor = new SpeedControllerGroup(LeftFront,LeftRear); SpeedControllerGroup RightMotor = new SpeedControllerGroup(RightFront,RightRear); DifferentialDrive drive = new DifferentialDrive(LeftMotor, RightMotor); /** * This function is run when the robot is first started up and should be used for any * initialization code. */ @Override public void robotInit() { // m_chooser.setDefaultOption("Default Auto", kDefaultAuto); // m_chooser.addOption("My Auto", kCustomAuto); // SmartDashboard.putData("Auto choices", m_chooser); RightFront.setInverted(true); RightRear.setInverted(true); LeftFront.setInverted(false); LeftRear.setInverted(false); } @Override public void robotPeriodic() {} @Override public void autonomousInit() { // m_autoSelected = m_chooser.getSelected(); // System.out.println("Auto selected: " + m_autoSelected); } @Override public void autonomousPeriodic() { // switch (m_autoSelected) { // case kCustomAuto: // // Put custom auto code here // break; // case kDefaultAuto: // default: // // Put default auto code here // break; //} } @Override public void teleopInit() {} @Override public void teleopPeriodic() {} /** This function is called once when the robot is disabled. */ @Override public void disabledInit() {} /** This function is called periodically when disabled. */ @Override public void disabledPeriodic() {} /** This function is called once when test mode is enabled. */ @Override public void testInit() {} /** This function is called periodically during test mode. */ @Override public void testPeriodic() {} } ``` ::: ## 20220208 ### 曹允維 #### 今日進度 - ### 蔡程翔 #### 今日進度 - 把昨天還沒裝完的部分裝完了 - 上輪子還有皮帶跟鏈條 - 軌道有噴砂 #### 遇到問題 - 在2邊皮帶變向的地方沒有長度剛好的橡皮圈 - 有些固定件還沒C好 - 在軌道要上去的地方還是不穩 #### 解決辦法 - 找2條比較短的然後剪掉,弄到適合的長度時,再接起來。 - 去雷切固定件然後再把他們拉釘拉上去 ### 林聖貴 #### 今日進度 - 將儲球的機制改善完成 #### 遇到問題 - 皮帶替代用橡皮圈不夠緊繃,使用止血帶阻力過大 - 皮帶輪的傳動方式設計上有沒貼合空轉的問題 #### 解決辦法 - 重新製作了橡皮圈 - 使用較大的果凍輪解決了空轉問題 ::: spoiler 照片 ![](https://i.imgur.com/q7VMXd3.jpg) ::: ## 20220209 ### 蔡程翔 #### 今日進度 - 把儲球輪子的種類和大小再確定一次,如果有不穩的的時候,再換可以用的輪子。 - 將程式組測試的結果再根據有問題的地方修改我們輪子的配置。 - 去雷切輸球跟射球的連接裝置的固定件。 #### 遇到問題 - 原本的輪子在輸球的時候如果沒有初速度,他的球會在軌道那邊一直空轉。 - 程式組測試完之後發現,輸球連接到射球的地方,輸球的速度不夠。 #### 解決方法 - 嘗試使用其他不同種的輪子,從原本的中間一顆4吋旁邊2顆2吋,然後又變成中間變成2顆4吋果凍倫,最後的話再換成灰輪。 - 我們將最上面皮帶輪的地方在多加一顆果凍輪,希望可以加強他的力道。 ## 20220210 ## 20220211 ### 蔡程翔 #### 今日進度 - 將儲球的的連接件C好,然後再把一些裝到收球上面 - 雷切了收球的prototype #### 遇到問題 - 小台的CNC在C的時候要有人顧 - 再組裝固定件的時候因為有些地方被除料,所以不能拉釘。 #### 解方方法 - 我在那邊顧著CNC一整個下午 - 那些不能拉的地方為了對稱,所以就拉了一些空的拉釘 #### 心得 - 我覺得我雷切的速度越來越快了,但是我還是覺得我整體做事的效率可以再加強,這天原本六點多賴政諺和曹允維走的時候都有交代事情,但是我在弄拉釘,根本沒時間去做,就可能之後做事情的時候再有效率一點吧。

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully