-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdi-yi-jie-frc-ji-zhu-jiao-liu-hui.html
1638 lines (1193 loc) · 58 KB
/
di-yi-jie-frc-ji-zhu-jiao-liu-hui.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="keywords" content="第一届FRC技术交流会, FRC Robot Team6940">
<meta name="description" content="A high-school robotics team from No.2 High School Of East China Normal University Zizhu Campus.">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="renderer" content="webkit|ie-stand|ie-comp">
<meta name="mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Global site tag (gtag.js) - Google Analytics -->
<title>第一届FRC技术交流会 | Violet Z -Team6940</title>
<link rel="icon" type="image/jpeg" href="/6940.jpg">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/Team6940/Team6940.github.io/libs/awesome/css/all.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/Team6940/Team6940.github.io/libs/materialize/materialize.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/Team6940/Team6940.github.io/libs/aos/aos.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/Team6940/Team6940.github.io/libs/animate/animate.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/Team6940/Team6940.github.io/libs/lightGallery/css/lightgallery.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/Team6940/Team6940.github.io/css/matery.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/Team6940/Team6940.github.io/css/my.css">
<script src="https://cdn.jsdelivr.net/gh/Team6940/Team6940.github.io/libs/jquery/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="/css/dark.css">
<meta name="referrer" content="no-referrer-when-downgrade">
<script src="/js/autohidenav.js"></script>
<meta name="keywords" content=" 技术交流,">
<meta name="description" content="A high-school robotics team from No.2 High School Of East China Normal University Zizhu Campus.">
<meta name="generator" content="Hexo 5.4.0"><link rel="alternate" href="/atom.xml" title="Violet Z -Team6940" type="application/atom+xml">
<style>.github-emoji { position: relative; display: inline-block; width: 1.2em; min-height: 1.2em; overflow: hidden; vertical-align: top; color: transparent; } .github-emoji > span { position: relative; z-index: 10; } .github-emoji img, .github-emoji .fancybox { margin: 0 !important; padding: 0 !important; border: none !important; outline: none !important; text-decoration: none !important; user-select: none !important; cursor: auto !important; } .github-emoji img { height: 1.2em !important; width: 1.2em !important; position: absolute !important; left: 50% !important; top: 50% !important; transform: translate(-50%, -50%) !important; user-select: none !important; cursor: auto !important; } .github-emoji-fallback { color: inherit; } .github-emoji-fallback img { opacity: 0 !important; }</style>
</head>
<body>
<header class="navbar-fixed">
<nav id="headNav" class="bg-color nav-transparent">
<div id="navContainer" class="nav-wrapper container">
<div class="brand-logo">
<a href="/" class="waves-effect waves-light">
<img src="/6940.jpg" class="logo-img" alt="LOGO">
<span class="logo-span">Violet Z -Team6940</span>
</a>
</div>
<a href="#" data-target="mobile-nav" class="sidenav-trigger button-collapse"><i class="fas fa-bars"></i></a>
<ul class="right nav-menu">
<li class="hide-on-med-and-down nav-item">
<a href="/" class="waves-effect waves-light">
<i class="fas fa-home" style="zoom: 0.6;"></i>
<span>首页</span>
</a>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="" class="waves-effect waves-light">
<i class="fas fa-user-circle" style="zoom: 0.6;"></i>
<span>关于</span>
<i class="fas fa-chevron-down" aria-hidden="true" style="zoom: 0.6;"></i>
</a>
<ul class="sub-nav menus_item_child ">
<li>
<a href="/about">
<i class="fas fa-user-circle" style="margin-top: -20px; zoom: 0.6;"></i>
<span>队伍简介</span>
</a>
</li>
<li>
<a href="/friends">
<i class="fas fa-user-friends" style="margin-top: -20px; zoom: 0.6;"></i>
<span>队员介绍</span>
</a>
</li>
</ul>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="" class="waves-effect waves-light">
<i class="fas fa-tags" style="zoom: 0.6;"></i>
<span>标签</span>
<i class="fas fa-chevron-down" aria-hidden="true" style="zoom: 0.6;"></i>
</a>
<ul class="sub-nav menus_item_child ">
<li>
<a href="/categories">
<i class="fas fa-bookmark" style="margin-top: -20px; zoom: 0.6;"></i>
<span>文章分类</span>
</a>
</li>
<li>
<a href="/tags">
<i class="fas fa-tags" style="margin-top: -20px; zoom: 0.6;"></i>
<span>文章标签</span>
</a>
</li>
<li>
<a href="/archives">
<i class="fas fa-archive" style="margin-top: -20px; zoom: 0.6;"></i>
<span>文章历史</span>
</a>
</li>
</ul>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="/Sponsor" class="waves-effect waves-light">
<i class="fas fas fa-ad" style="zoom: 0.6;"></i>
<span>赞助</span>
</a>
</li>
<li>
<a href="#searchModal" class="modal-trigger waves-effect waves-light">
<i id="searchIcon" class="fas fa-search" title="搜索" style="zoom: 0.85;"></i>
</a>
</li>
</ul>
<div id="mobile-nav" class="side-nav sidenav">
<div class="mobile-head bg-color">
<img src="/6940.jpg" class="logo-img circle responsive-img">
<div class="logo-name">Violet Z -Team6940</div>
<div class="logo-desc">
A high-school robotics team from No.2 High School Of East China Normal University Zizhu Campus.
</div>
</div>
<ul class="menu-list mobile-menu-list">
<li class="m-nav-item">
<a href="/" class="waves-effect waves-light">
<i class="fa-fw fas fa-home"></i>
首页
</a>
</li>
<li class="m-nav-item">
<a href="javascript:;">
<i class="fa-fw fas fa-user-circle"></i>
关于
<span class="m-icon"><i class="fas fa-chevron-right"></i></span>
</a>
<ul style="background: ;" >
<li>
<a href="/about " style="margin-left:75px">
<i class="fa fas fa-user-circle" style="position: absolute;left:50px" ></i>
<span>队伍简介</span>
</a>
</li>
<li>
<a href="/friends " style="margin-left:75px">
<i class="fa fas fa-user-friends" style="position: absolute;left:50px" ></i>
<span>队员介绍</span>
</a>
</li>
</ul>
</li>
<li class="m-nav-item">
<a href="javascript:;">
<i class="fa-fw fas fa-tags"></i>
标签
<span class="m-icon"><i class="fas fa-chevron-right"></i></span>
</a>
<ul style="background: ;" >
<li>
<a href="/categories " style="margin-left:75px">
<i class="fa fas fa-bookmark" style="position: absolute;left:50px" ></i>
<span>文章分类</span>
</a>
</li>
<li>
<a href="/tags " style="margin-left:75px">
<i class="fa fas fa-tags" style="position: absolute;left:50px" ></i>
<span>文章标签</span>
</a>
</li>
<li>
<a href="/archives " style="margin-left:75px">
<i class="fa fas fa-archive" style="position: absolute;left:50px" ></i>
<span>文章历史</span>
</a>
</li>
</ul>
</li>
<li class="m-nav-item">
<a href="/Sponsor" class="waves-effect waves-light">
<i class="fa-fw fas fas fa-ad"></i>
赞助
</a>
</li>
<li><div class="divider"></div></li>
<li>
<a href="https://github.com/blinkfox/hexo-theme-matery" class="waves-effect waves-light" target="_blank">
<i class="fab fa-github-square fa-fw"></i>Fork Me
</a>
</li>
</ul>
</div>
</div>
<style>
.nav-transparent .github-corner {
display: none !important;
}
.github-corner {
position: absolute;
z-index: 10;
top: 0;
right: 0;
border: 0;
transform: scale(1.1);
}
.github-corner svg {
color: #0575e6;
fill: #fff;
height: 64px;
width: 64px;
}
.github-corner:hover .octo-arm {
animation: a 0.56s ease-in-out;
}
.github-corner .octo-arm {
animation: none;
}
@keyframes a {
0%,
to {
transform: rotate(0);
}
20%,
60% {
transform: rotate(-25deg);
}
40%,
80% {
transform: rotate(10deg);
}
}
</style>
<a href="https://github.com/blinkfox/hexo-theme-matery" class="github-corner tooltipped hide-on-med-and-down" target="_blank"
data-tooltip="Fork Me" data-position="left" data-delay="50">
<svg viewBox="0 0 250 250" aria-hidden="true">
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
<path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"
fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>
<path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"
fill="currentColor" class="octo-body"></path>
</svg>
</a>
</nav>
</header>
<div class="bg-cover pd-header post-cover" style="background-image: url('https://pic.imgdb.cn/item/611270995132923bf8b47f19.jpg')">
<div class="container" style="right: 0px;left: 0px;">
<div class="row">
<div class="col s12 m12 l12">
<div class="brand">
<h1 class="description center-align post-title">第一届FRC技术交流会</h1>
</div>
</div>
</div>
</div>
</div>
<main class="post-container content">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Team6940/Team6940.github.io/libs/tocbot/tocbot.css">
<link rel="stylesheet" type="text/css" href="/css/detail/post-detail-toc.css">
<div class="row">
<div id="main-content" class="col s12 m12 l9">
<!-- 文章内容详情 -->
<div id="artDetail">
<div class="card">
<div class="card-content article-info">
<div class="row tag-cate">
<div class="col s7">
<div class="article-tag">
<a href="/tags/%E6%8A%80%E6%9C%AF%E4%BA%A4%E6%B5%81/">
<span class="chip bg-color">技术交流</span>
</a>
</div>
</div>
<div class="col s5 right-align">
<div class="post-cate">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E6%8A%80%E6%9C%AF%E4%BA%A4%E6%B5%81/" class="post-category">
技术交流
</a>
</div>
</div>
</div>
<div class="post-info">
<div class="post-date info-break-policy">
<i class="far fa-calendar-minus fa-fw"></i>发布日期:
2021-08-10
</div>
<div class="post-date info-break-policy">
<i class="far fa-calendar-check fa-fw"></i>更新日期:
2021-08-13
</div>
<div class="info-break-policy">
<i class="far fa-file-word fa-fw"></i>文章字数:
2.4k
</div>
<div class="info-break-policy">
<i class="far fa-clock fa-fw"></i>阅读时长:
8 分
</div>
<div id="busuanzi_container_page_pv" class="info-break-policy">
<i class="far fa-eye fa-fw"></i>阅读次数:
<span id="busuanzi_value_page_pv"></span>
</div>
</div>
</div>
<hr class="clearfix">
<!-- 是否加载使用自带的 prismjs. -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Team6940/Team6940.github.io/libs/prism/prism.css">
<div class="card-content article-card-content">
<div id="articleContent">
<center><font size="5">还记得11月底FRC的活动吗?</font></center>
<div align="center">
<img src="https://pic.imgdb.cn/item/611268cb5132923bf8a57b5f.jpg" width="80" height="80">
</div>
<p><img src="https://pic.imgdb.cn/item/61126a375132923bf8a8255d.jpg" alt="不全的华二全家福"></p>
<center>不全的华二全家福</center>
<hr>
<center>参加活动的同学们回到学校后,进行了分享交流,</center>
<center>让没能参加的队员们也能有所收获。</center>
<p><img src="https://pic.imgdb.cn/item/61126ab85132923bf8a91416.jpg"></p>
<center>那接下来让6940的队员们再现这次交流会的精彩瞬间吧!</center>
<p><font></font></p><center><font><strong>ps:由6940的王智烨同学讲解的“3D打印之于frc”在第二篇推文中有详细介绍哦!</strong></font></center><p></p>
<h2 id="校长致辞"><a href="#校长致辞" class="headerlink" title="校长致辞"></a>校长致辞</h2><p><img src="https://pic.imgdb.cn/item/61126b3f5132923bf8aa0ec6.jpg"></p>
<center>民办平和学校的副校长奚校长在活动开始时致辞,</center>
<center>预祝活动取得圆满成功。</center>
<hr>
<h2 id="part-1-机器人“干冰”"><a href="#part-1-机器人“干冰”" class="headerlink" title="part 1 机器人“干冰”"></a>part 1 机器人“干冰”</h2><center>第一宣讲是由6941(民办平和学校)的队长奚宇涵带来的机器人“干冰”介绍</center>
<p><img src="https://pic.imgdb.cn/item/61126ba15132923bf8aac570.jpg"></p>
<center>
在进行备赛之前,首先确定总体设计目标
<p>你想要让自己的机器人做到哪些?</p>
<p>是作为得分手</p>
<p>还是把重点放在防守上</p>
<p>在明确目标之后思考想要设计的结构</p>
<p>intaker如何设计,电梯如何设计</p>
<p>一个装置完成多个任务真的会把工作量降低嘛?</p>
<p>答案是:不一定</p>
<p>应该是各个装置完成相应目标则更为简单</p></center><p></p>
<p><img src="https://pic.imgdb.cn/item/61126bea5132923bf8ab548d.jpg"></p>
<p><strong>Q:车子一定要快嘛?</strong></p>
<p>A:<br>好处:推力大,上坡不会卡<br>坏处:不是很稳定,对driver有难度,难以控制<br>怎么解决:底盘使用多减速箱,达到多减速比,在运行和防守推人的时候进行换挡,使用多模式</p>
<p><strong>Q:机械臂如何保护?</strong></p>
<p>A:伸出的机械臂一般受不到保护,intaker是车子的灵魂,为了保证机械臂不会被撞断,一般在材料上会使用刚性材料,保证坚固,同时在结构上做到以柔克刚(收到撞击后机械臂上抬)以吸收冲击力,并在侧面增加挡板,增强保护性</p>
<p><strong>Q:如何提高intaker的容错率?</strong></p>
<p>A:在结构细节上下功夫,转轮抓球自动导向正中,方便出球。抓盘结构伸缩装置增加活动关节,实现多角度放盘子。这样能大幅度增加intaker的容错率</p>
<hr>
<h2 id="part-2-队伍运营"><a href="#part-2-队伍运营" class="headerlink" title="part 2 队伍运营"></a>part 2 队伍运营</h2><center>第二个宣讲是由6907带来的FRC的团队运营</center>
<p><img src="https://pic.imgdb.cn/item/61126c505132923bf8ac1090.jpg"></p>
<p><font></font></p><center><font><br>团队运营是由 <strong>宣传,赞助,传承,外交</strong> 四部分构成的<p></p>
<p><strong>如何才能做好宣传?</strong></p>
<p>你需要设计好丰富的周边</p>
<p>制作好吸引人的视频</p>
<p>推送优秀的公众号</p>
<p><strong>如何才能做好赞助?</strong></p>
<p>从FRC的备赛来讲,钱一直是一个很严重的问题</p>
<p>所以去向公司拉赞助就显得尤为重要</p>
<p>你需要找到自己的特点</p>
<p>强调FRC能带来的好处</p>
<p>FRC正在国内快速发展中,全景广大</p>
<p>更能为公司带来潜在的人才资源</p>
<p><strong>如何才能做好传承?</strong></p>
<p>FRC是个口口相传的比赛</p>
<p>老队员核心队员带新队员参赛</p>
<p>每周的1节或者2节社团课,去学习机械结构</p>
<p>去了解新事物,去充实社团课的内容</p>
<p>每届都会有老队员离开,也都会有新队员加入队伍</p>
<p>队伍精神要一直传承下去</p>
<p><strong>如何才能做好外交?</strong></p>
<p>为了更好的去宣传FRC文化队伍可以通过线下演讲、组织聚会、技术交流会,来发展新FRC队伍,让更多的学校或组织了解并加入FRC,让FRC在国内得到更好的发展。</p></font></center><p></p>
<h2 id="part-3-frc生存指南"><a href="#part-3-frc生存指南" class="headerlink" title="part 3 frc生存指南"></a>part 3 frc生存指南</h2><center>第三个分享交流由武书昆老师主讲。</center>
<p><img src="https://pic.imgdb.cn/item/61126cfb5132923bf8ad571d.jpg"></p>
<center>目前中国FRC环境的现状不容乐观,200多支注册的队伍中艰难存活下来的只有三分之一...
<p><strong>如何才能在这样的环境中生存下来?</strong></p>
<p><strong>造出有竞争力的机器人</strong>,得到奖项,给到支持的家长老师<br>校方你们的优异成绩</p>
<p>这样,才能生存</p>
<p>可是怎么造出有竞争力的机器人?</p>
<p>没有一个中国FRC队伍敢说自己是强队</p>
<p>我们相比美国老队来讲,都还太年轻,不够成熟</p>
<p>所以,我们必须要站在巨人的肩膀上</p>
<p><strong>去学习,去借鉴,</strong>去实现自己的目标!</p>
<p><strong>如何去学习,去借鉴?</strong></p>
<p><strong>去外网学习,向大佬的结构进行参考</strong></p>
<p>从Ri3days,EVERYbot,MCC去学习去参考最实用的车子的结构,从全球最大工程师平台<a target="_blank" rel="noopener" href="http://www.grabcd.com去寻找思路,从chief/">www.grabcd.com去寻找思路,从chief</a> deiphi 论坛中去找到你想要的任何东西</p>
<p>自我运营好队伍也很关键</p>
<p>不能因为核心队员走了,整个队伍就散了</p>
<p>要学会<strong>队伍传承</strong></p>
<p>每年都有新鲜血液进来</p>
<p>也总会一个个离开我们</p>
<p><strong>铁打的盘营,流水的兵</strong></p>
<p>队伍的精神要一届届的传承下去!</p>
<p>武老师在讲到invent the rest的时候,提到了6940在2019年RCC的例子,并且邀请了6940的郭威老师上台分享。</p></center><p></p>
<p><img src="https://pic.imgdb.cn/item/61126dbe5132923bf8aecea8.jpg"></p>
<center>郭威老师为大家讲述了备赛的时候的点点滴滴。
<p>6940在19赛季的堪萨斯赛区的机器人的表现并不理想,于是在季后赛选择了重新设计一台车,在参考了118的Ri3D,并结合了队伍的实际情况后,6940设计了一辆把重点放在cargo上的车,即使这辆车并不能做抬升与爬升,却也在RCC中取得了队史上的最好成绩:以第七联盟队长的身份进入了淘汰赛。</p>
<p>这也极好的证明了有些时候最简单的结构往往能得到最好的结果。最后郭威老师在台上也表达了对于6940的未来的期待,希望6940能再创辉煌。</p>
<p>加油,少年们,流年笑掷,未来可期!</p>
</center>
<h2 id="part-4-交密院宣讲"><a href="#part-4-交密院宣讲" class="headerlink" title="part 4 交密院宣讲"></a>part 4 交密院宣讲</h2><center>本次活动中最令人惊喜的就是交大密西根学院的招生宣讲了,而且招生专业与工程高度吻合。交密作为本次交流会的支持单位之一,为我们介绍了他们学院的特色以及与工程生的各种福利制度。听完了他们的介绍,我们了解了工程中创新的重要性以及交密对这方面的大力支持,这也从侧面为我们展现了工程学科不可估量的未来!</center>
<p><img src="https://pic.imgdb.cn/item/61126e235132923bf8af9075.jpg"></p>
<h2 id="part-5-无人驾驶项目介绍"><a href="#part-5-无人驾驶项目介绍" class="headerlink" title="part 5 无人驾驶项目介绍"></a>part 5 无人驾驶项目介绍</h2><center>张振林先生介绍了无人驾驶项目的推进。他着重强调了“功能明确化”和“项目步骤分解”,通过观看现阶段无人驾驶车辆的视频,以及其工作原理。</center>
<p><img src="https://pic.imgdb.cn/item/61126e4b5132923bf8afdff7.jpg"></p>
<center>一个项目有两个要素:
<p>一系列任务,一定限制条件</p>
<p>而项目管理有三个要素:</p>
<p>时间,成本,质量</p>
<p>做一个项目,</p>
<p>就是在有限的时间和成本内追求最高的质量</p>
</center>
<h2 id="part-6-程序设计"><a href="#part-6-程序设计" class="headerlink" title="part 6 程序设计"></a>part 6 程序设计</h2><center>平和6941的介绍了FRC程序核心,机器人控制需要几个子系统,子系统下面又是一个个命令。关于自动化,他提出升降机最好不需要操作员控制高度,而是按一个键直接到达预设高度,吸盘的抬升也是提前设定好,这样能提高对于操作手的友好程度,也更加方便。</center>
<p><img src="https://pic.imgdb.cn/item/61126ea15132923bf8b08aee.jpg"></p>
<h2 id="part-7-快速制造"><a href="#part-7-快速制造" class="headerlink" title="part 7 快速制造"></a>part 7 快速制造</h2><p><img src="https://pic.imgdb.cn/item/61126ebc5132923bf8b0c1ef.jpg"></p>
<center>交通大学附属中学(5515)的同学介绍了快速制造。快速制造是一种让我们在很短的时间内建造出一台有竞争力,完善的机器的技术。5515的同学们通过148的实例向我们展示了快速制造的优点。随后,他又详尽地介绍了如何进行快速建造,并指出CAD绘图与机器人设计的重要性。</center>
<h2 id="part-8-CNC加工铣床介绍"><a href="#part-8-CNC加工铣床介绍" class="headerlink" title="part 8 CNC加工铣床介绍"></a>part 8 CNC加工铣床介绍</h2><center>来自华师大二附中的同学向我们介绍了他们暑假里刚刚购进的CNC加工铣床。这是一个全自动化、数字化的精准的电脑控制的加工机器。
<p>他们用视频向我们展示了CNC加工铣床的使用方法,并分析了其优点,以及使用时需注意的事项,同时推荐队伍们都购进这样的机器,以及能大大降低成本的其他不同功能的四台机床。</p></center><p></p>
<p><font></font></p><center><font><strong>主办学校:</strong><p></p>
<p>上海市民办平和学校</p>
<p>华东师范大学第二附属中学</p>
<p>复旦大学附属中学</p>
<p>华东师范大学第二附属中学紫竹校区</p>
<p>上海交通大学附属中学</p>
<p><strong>参会学校:</strong></p>
<p>苏州外国语学校</p>
<p>上海市建平中学</p>
<p>世界联合书院</p>
<p>浙江省杭州第二中学</p>
<p>上海七宝德怀特高级中学</p>
<p>上海世界外国语中学</p>
<p>上海美国学校浦西校区</p>
<p>星河湾双语学校</p>
<p>上海市实验学校</p>
<p>上海美国学校浦东校区</p>
<p>苏州市第三中学</p>
<p><strong>支持单位:</strong></p>
<p>FRC上海组委会</p>
<p>上海交通大学密西根学院</p>
<p>西交利物浦大学科学技术与创造力研究中心</p>
<p>上汽大通汽车有限公司MAXUS机器人俱乐部</p>
<p>上海市工业设计协会3D打印专业委员会</p>
<p>郑州市青少年机器人科普协会</p></font></center><p></p>
<p>文案:王嘉林、王驭旻</p>
<p>排版:顾思忆</p>
<p>markdown编辑:mendax1234</p>
</div>
<hr/>
<div class="reprint" id="reprint-statement">
<div class="reprint__author">
<span class="reprint-meta" style="font-weight: bold;">
<i class="fas fa-user">
文章作者:
</i>
</span>
<span class="reprint-info">
<a href="/about" rel="external nofollow noreferrer"></a>
</span>
</div>
<div class="reprint__type">
<span class="reprint-meta" style="font-weight: bold;">
<i class="fas fa-link">
文章链接:
</i>
</span>
<span class="reprint-info">
<a href="https://www.6940violetz.top/di-yi-jie-frc-ji-zhu-jiao-liu-hui.html">https://www.6940violetz.top/di-yi-jie-frc-ji-zhu-jiao-liu-hui.html</a>
</span>
</div>
<div class="reprint__notice">
<span class="reprint-meta" style="font-weight: bold;">
<i class="fas fa-copyright">
版权声明:
</i>
</span>
<span class="reprint-info">
本博客所有文章除特別声明外,均采用
<a href="https://creativecommons.org/licenses/by/4.0/deed.zh" rel="external nofollow noreferrer" target="_blank">CC BY 4.0</a>
许可协议。转载请注明来源
<a href="/about" target="_blank"></a>
!
</span>
</div>
</div>
<script async defer>
document.addEventListener("copy", function (e) {
let toastHTML = '<span>复制成功,请遵循本文的转载规则</span><button class="btn-flat toast-action" onclick="navToReprintStatement()" style="font-size: smaller">查看</a>';
M.toast({html: toastHTML})
});
function navToReprintStatement() {
$("html, body").animate({scrollTop: $("#reprint-statement").offset().top - 80}, 800);
}
</script>
<div class="tag_share" style="display: block;">
<div class="post-meta__tag-list" style="display: inline-block;">
<div class="article-tag">
<a href="/tags/%E6%8A%80%E6%9C%AF%E4%BA%A4%E6%B5%81/">
<span class="chip bg-color">技术交流</span>
</a>
</div>
</div>
<div class="post_share" style="zoom: 80%; width: fit-content; display: inline-block; float: right; margin: -0.15rem 0;">
<link rel="stylesheet" type="text/css" href="/libs/share/css/share.min.css">
<div id="article-share">
<div class="social-share" data-sites="twitter,facebook,google,qq,qzone,wechat,weibo,douban,linkedin" data-wechat-qrcode-helper="<p>微信扫一扫即可分享!</p>"></div>
<script src="/libs/share/js/social-share.min.js"></script>
</div>
</div>
</div>
</div>
</div>
<style>
.valine-card {
margin: 1.5rem auto;
}
.valine-card .card-content {
padding: 20px 20px 5px 20px;
}
#vcomments textarea {
box-sizing: border-box;
background: url("/null") 100% 100% no-repeat;
}
#vcomments p {
margin: 2px 2px 10px;
font-size: 1.05rem;
line-height: 1.78rem;
}
#vcomments blockquote p {
text-indent: 0.2rem;
}
#vcomments a {
padding: 0 2px;
color: #4cbf30;
font-weight: 500;
text-decoration: none;
}
#vcomments img {
max-width: 100%;
height: auto;
cursor: pointer;
}
#vcomments ol li {
list-style-type: decimal;
}
#vcomments ol,
ul {
display: block;
padding-left: 2em;
word-spacing: 0.05rem;
}
#vcomments ul li,
ol li {
display: list-item;
line-height: 1.8rem;
font-size: 1rem;
}
#vcomments ul li {
list-style-type: disc;
}
#vcomments ul ul li {
list-style-type: circle;
}
#vcomments table, th, td {
padding: 12px 13px;
border: 1px solid #dfe2e5;
}
#vcomments table, th, td {
border: 0;
}
table tr:nth-child(2n), thead {
background-color: #fafafa;
}
#vcomments table th {
background-color: #f2f2f2;
min-width: 80px;
}
#vcomments table td {
min-width: 80px;
}
#vcomments h1 {
font-size: 1.85rem;
font-weight: bold;
line-height: 2.2rem;
}
#vcomments h2 {
font-size: 1.65rem;
font-weight: bold;
line-height: 1.9rem;
}
#vcomments h3 {
font-size: 1.45rem;
font-weight: bold;
line-height: 1.7rem;
}
#vcomments h4 {
font-size: 1.25rem;
font-weight: bold;
line-height: 1.5rem;
}
#vcomments h5 {
font-size: 1.1rem;
font-weight: bold;
line-height: 1.4rem;
}
#vcomments h6 {
font-size: 1rem;
line-height: 1.3rem;
}
#vcomments p {
font-size: 1rem;
line-height: 1.5rem;
}
#vcomments hr {
margin: 12px 0;
border: 0;
border-top: 1px solid #ccc;
}
#vcomments blockquote {
margin: 15px 0;
border-left: 5px solid #42b983;
padding: 1rem 0.8rem 0.3rem 0.8rem;
color: #666;
background-color: rgba(66, 185, 131, .1);
}
#vcomments pre {
font-family: monospace, monospace;
padding: 1.2em;
margin: .5em 0;
background: #272822;
overflow: auto;
border-radius: 0.3em;
tab-size: 4;
}
#vcomments code {
font-family: monospace, monospace;
padding: 1px 3px;
font-size: 0.92rem;
color: #e96900;
background-color: #f8f8f8;
border-radius: 2px;
}
#vcomments pre code {
font-family: monospace, monospace;
padding: 0;
color: #e8eaf6;
background-color: #272822;
}
#vcomments pre[class*="language-"] {
padding: 1.2em;
margin: .5em 0;
}
#vcomments code[class*="language-"],
pre[class*="language-"] {
color: #e8eaf6;
}
#vcomments [type="checkbox"]:not(:checked), [type="checkbox"]:checked {
position: inherit;
margin-left: -1.3rem;
margin-right: 0.4rem;
margin-top: -1px;
vertical-align: middle;
left: unset;
visibility: visible;
}
#vcomments b,
strong {
font-weight: bold;
}
#vcomments dfn {
font-style: italic;
}
#vcomments small {
font-size: 85%;
}
#vcomments cite {
font-style: normal;
}
#vcomments mark {
background-color: #fcf8e3;
padding: .2em;
}
#vcomments table, th, td {
padding: 12px 13px;
border: 1px solid #dfe2e5;
}
table tr:nth-child(2n), thead {
background-color: #fafafa;
}
#vcomments table th {
background-color: #f2f2f2;
min-width: 80px;
}
#vcomments table td {
min-width: 80px;
}
#vcomments [type="checkbox"]:not(:checked), [type="checkbox"]:checked {
position: inherit;
margin-left: -1.3rem;
margin-right: 0.4rem;
margin-top: -1px;
vertical-align: middle;
left: unset;
visibility: visible;
}
</style>
<div class="card valine-card" data-aos="fade-up">
<div class="comment_headling" style="font-size: 20px; font-weight: 700; position: relative; padding-left: 20px; top: 15px; padding-bottom: 5px;">
<i class="fas fa-comments fa-fw" aria-hidden="true"></i>
<span>评论</span>
</div>
<div id="vcomments" class="card-content" style="display: grid">
</div>
</div>
<script src="/libs/valine/av-min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/Team6940/Team6940.github.io/libs/valine/Valine.min.js"></script>
<script>
new Valine({
el: '#vcomments',
appId: 'VKTBQVusXVLUOD6URIypnQ0u-gzGzoHsz',
appKey: 'GTuMRX4w5x1LwjcTeGdyoimB',
notify: 'true' === 'true',
verify: 'true' === 'true',
visitor: 'true' === 'true',
avatar: 'mm',
pageSize: '10',
lang: 'zh-cn',
placeholder: 'just go go'
});
</script>
<!--酷Q推送-->