視頻:
希望喜歡工作室作品的朋友將我們的作品和精神分享,我們堅持創新,堅持開源!轉載和引用請注明出處,禁止用于商業目的。
光立方原理圖:
原理圖.JPG (292.05 KB, 下載次數: 223)
下載附件
2015-10-30 14:43 上傳
14年注定是繁忙的一年,年初到現在,除了本職工作比較繁忙,再就是輔導學生參加單片機設計競賽。加上最近比較泛濫,都沒時間整理匯編教程。好像是在某一天,突然覺得這么渾渾噩噩下去實在是不行,于是鞭策自己跑到實驗室,開始枯燥的碼字。進過一段時間的努力,總算是小有收貨。
這次給大家的帶來的作品是4x4x4的立方光,可能大家覺得,之前我做的是8x8x8的,現在怎么越做越小了,其實不是這樣的。現在我帶領學生也在做16x16X16的立方光,但大的立方光就必須要用C語言寫了,我的C語言學的時間不長,基本上都是用到什么才去學,為了能更好的實現16x16x16立方光的控制,所以我先做了一個4x4x4的立方光,用C語言編程,感悟一下C語言的控制方式。視頻中的動畫平不多,因為我實在是沒時間來設計動畫了,有想做的朋友可以自己再加動畫。
制作步驟
一 材料請根據原理圖自行購買
二制作工具
焊接燈珠一向是比較麻煩的,但借助自己制作的工具來焊接,可以節約大量的人力和時間,所以這里簡要說明一向焊接模板的制作。
圖1
圖1是我用萬能版加排針搭建的,排針直接橫向的間距是7個洞,縱向的間距是8個洞,沒2個排針為一組,一次焊接好16組就可以了。
接下來是燈珠管腳的彎折,最好是用平口鑷子。燈珠的短管腳面向你,用鑷子把所有管腳向右90度彎折,如圖2
再把燈珠的長管腳(正極)向下90度彎折,如圖
圖3
燈珠的彎折只需要這兩步,然后就可以擺放到焊接模板上了,這里我以兩個燈珠的擺放為例如圖4
擺放好后,就可以焊接了,焊接好后,檢查是否有開焊虛焊等問題。焊好的點陣如圖4-1

三 驅動板的焊接,這次驅動電路我沒使用任何IC,而是三極管直接驅動,之所以選用8550,是因為三極管開關電路中,8550是低電平導通,避免了單片機上電就導通的問題。8550可承受的電流較于其他90系列三極管較大,最適合做led驅動。
每組三極管的焊接如圖所示
圖5
共陽極驅動三極管共需要16只,再加上4只回路控制,共20只,這里需要注意的是,共陽極三極管和回路三極管的焊接是不同的,詳細請參照原理圖。三極管的B極是通過單片機控制的,三極管的數量比較多,所以在板子背面就只能跳線了。
四 實物組裝
焊接好最小系統,驅動電路后,就可以組裝了。組裝之前檢查4個點陣高度是否一致,然后就直接插在母座上面。插好后,會發現燈珠的負極管腳還是懸空的。此時將每一層的負極管腳短接。注意!!!請參考下圖6:

這里要強調是,不是每個點陣的負極短接,而是兩兩點陣之間的負極管腳短接。這里所說的每一層是豎直高度的,而不是之前焊接好的點陣。
這樣焊接好后,電路是不會點亮的,因為led燈珠此時的負極沒有構成回路,換句話說,負極還是懸空的。此時就需要用廢棄的管腳或跳線來把每一層的負極連接到萬能板的回路三極管上。我是用元件管腳連接的,由于顏色問題,圖片里看不清楚,所以我給大家做出了圖示圖7
實物焊接圖
圖8

負極短接好后,就是連接到回路三極管了,我采用了跳線短接,即每一層的負極短接到萬能板,再通過跳線連接到回路三極管的C極,這樣立方光就有了電路回路(請根據原理圖理解)
圖9

主程序:
- #include"stc12c5a.h"
- #include"INTRINS.h"
- #include"basic.h"
- #define sNum 0
- #define eNum 1600
- void Delay100us();
- void Timer0Init(void);
- Word temp=sNum,count=0;
- Byte code table[]={0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
- 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
- 0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
- 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
- 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
- 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,
- 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,
- 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xfe,0xfe,
- 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xfe,0xfe,0xfe,
- 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,
- 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,
- 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,//12
- 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,//13
- 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,//14
- 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,//15
- 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,//16
- 0xfc,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
- 0xfc,0xfc,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
- 0xfc,0xfc,0xfc,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
- 0xfc,0xfc,0xfc,0xfc,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
- 0xfc,0xfc,0xfc,0xfc,0xfe,0xfe,0xfe,0xfc,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
- 0xfc,0xfc,0xfc,0xfc,0xfe,0xfe,0xfe,0xfc,0xfe,0xfe,0xfe,0xfc,0xfe,0xfe,0xfe,0xfe,
- 0xfc,0xfc,0xfc,0xfc,0xfe,0xfe,0xfe,0xfc,0xfe,0xfe,0xfe,0xfc,0xfe,0xfe,0xfe,0xfc,
- 0xfc,0xfc,0xfc,0xfc,0xfe,0xfe,0xfe,0xfc,0xfe,0xfe,0xfe,0xfc,0xfe,0xfe,0xfc,0xfc,
- 0xfc,0xfc,0xfc,0xfc,0xfe,0xfe,0xfe,0xfc,0xfe,0xfe,0xfe,0xfc,0xfe,0xfc,0xfc,0xfc,
- 0xfc,0xfc,0xfc,0xfc,0xfe,0xfe,0xfe,0xfc,0xfe,0xfe,0xfe,0xfc,0xfc,0xfc,0xfc,0xfc,
- 0xfc,0xfc,0xfc,0xfc,0xfe,0xfe,0xfe,0xfc,0xfc,0xfe,0xfe,0xfc,0xfc,0xfc,0xfc,0xfc,
- 0xfc,0xfc,0xfc,0xfc,0xfc,0xfe,0xfe,0xfc,0xfc,0xfe,0xfe,0xfc,0xfc,0xfc,0xfc,0xfc,
- 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfe,0xfc,0xfc,0xfe,0xfe,0xfc,0xfc,0xfc,0xfc,0xfc,
- 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfe,0xfe,0xfc,0xfc,0xfc,0xfc,0xfc,
- 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfe,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,
- 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,//32
- 0xf8,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,
- 0xf8,0xf8,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,
- 0xf8,0xf8,0xf8,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,
- 0xf8,0xf8,0xf8,0xf8,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,
- 0xf8,0xf8,0xf8,0xf8,0xfc,0xfc,0xfc,0xf8,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,
- 0xf8,0xf8,0xf8,0xf8,0xfc,0xfc,0xfc,0xf8,0xfc,0xfc,0xfc,0xf8,0xfc,0xfc,0xfc,0xfc,
- 0xf8,0xf8,0xf8,0xf8,0xfc,0xfc,0xfc,0xf8,0xfc,0xfc,0xfc,0xf8,0xfc,0xfc,0xfc,0xf8,
- 0xf8,0xf8,0xf8,0xf8,0xfc,0xfc,0xfc,0xf8,0xfc,0xfc,0xfc,0xf8,0xfc,0xfc,0xf8,0xf8,
- 0xf8,0xf8,0xf8,0xf8,0xfc,0xfc,0xfc,0xf8,0xfc,0xfc,0xfc,0xf8,0xfc,0xf8,0xf8,0xf8,
- 0xf8,0xf8,0xf8,0xf8,0xfc,0xfc,0xfc,0xf8,0xfc,0xfc,0xfc,0xf8,0xf8,0xf8,0xf8,0xf8,
- 0xf8,0xf8,0xf8,0xf8,0xfc,0xfc,0xfc,0xf8,0xf8,0xfc,0xfc,0xf8,0xf8,0xf8,0xf8,0xf8,
- 0xf8,0xf8,0xf8,0xf8,0xf8,0xfc,0xfc,0xf8,0xf8,0xfc,0xfc,0xf8,0xf8,0xf8,0xf8,0xf8,
- 0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xfc,0xf8,0xf8,0xfc,0xfc,0xf8,0xf8,0xf8,0xf8,0xf8,
- 0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xfc,0xfc,0xf8,0xf8,0xf8,0xf8,0xf8,
- 0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xfc,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,
- 0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,//48
- 0xf0,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,
- 0xf0,0xf0,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,
- 0xf0,0xf0,0xf0,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,
- 0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,
- 0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf8,0xf0,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,
- 0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf8,0xf0,0xf8,0xf8,0xf8,0xf0,0xf8,0xf8,0xf8,0xf8,
- 0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf8,0xf0,0xf8,0xf8,0xf8,0xf0,0xf8,0xf8,0xf8,0xf0,
- 0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf8,0xf0,0xf8,0xf8,0xf8,0xf0,0xf8,0xf8,0xf0,0xf0,
- 0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf8,0xf0,0xf8,0xf8,0xf8,0xf0,0xf8,0xf0,0xf0,0xf0,
- 0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf8,0xf0,0xf8,0xf8,0xf8,0xf0,0xf0,0xf0,0xf0,0xf0,
- 0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf8,0xf0,0xf0,0xf8,0xf8,0xf0,0xf0,0xf0,0xf0,0xf0,
- 0xf0,0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf0,0xf0,0xf8,0xf8,0xf0,0xf0,0xf0,0xf0,0xf0,
- 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf8,0xf0,0xf0,0xf8,0xf8,0xf0,0xf0,0xf0,0xf0,0xf0,
- 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf0,0xf0,0xf0,0xf0,0xf0,
- 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf8,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,
- 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,//64
- 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,
- 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,
- 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,// 67 全亮三次
- 0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,
- 0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,
- 0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,
- 0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7, //71
- 0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,
- 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,
- 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,
- 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, //75 上到下
-
- 0xf0,0xf0,0xf0,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
- 0xff,0xff,0xff,0xff,0xf0,0xf0,0xf0,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
- 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0xf0,0xf0,0xf0,0xff,0xff,0xff,0xff,
- 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0xf0,0xf0,0xf0, //79 前到后
- 0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,
- 0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,
- 0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,
- 0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,//83 右到左
- 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
- 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,
- 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,
- 0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7, //87 下到上
- 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0xf0,0xf0,0xf0,
- 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0xf0,0xf0,0xf0,0xff,0xff,0xff,0xff,
- 0xff,0xff,0xff,0xff,0xf0,0xf0,0xf0,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
- 0xf0,0xf0,0xf0,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, //91
- 0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,
- 0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,
- 0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,
- 0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xf0,0xff,0xff,0xff, //95
- 0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
- 0xfc,0xfc,0xff,0xff,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
- 0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xff,0xff,0xff,0xff,
- 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,//99
-
- };
- void main()
- {
- Byte m=0xfe,i;
- Timer0Init();
- while(1)
- {
-
- if(temp<eNum)
- {
- for(i=0;i<8;i++)
- {
- P0=m;
- P1=table[temp+i];
- m=_crol_(m,1);
- Delay100us();
- P1=0xff;
- }
- m=0xfe;
- P0=0xff;
- for(i=0;i<8;i++)
- {
- P2=m;
- P1=table[temp+i+8];
- m=_crol_(m,1);
- Delay100us();
- P1=0xff;
- }
- m=0xfe;
- P2=0xff;
- }
- else
- temp=sNum;
- }
- }
- void Timer0Init(void) //5毫秒@11.0592MHz
- {
- IE=0x82;
- AUXR |= 0x80; //定時器時鐘1T模式
- TMOD &= 0xF0; //設置定時器模式
- TMOD |= 0x01; //設置定時器模式
- TL0 = 0x00; //設置定時初值
- TH0 = 0x28; //設置定時初值
- TF0 = 0; //清除TF0標志
- TR0 = 1; //定時器0開始計時
- }
- void T0_time() interrupt 1
- {
-
- TL0 = 0xA0; //設置定時初值
- TH0 = 0x15; //設置定時初值
- count++;
- if(count==30)
- {
- count=0;
- temp=temp+16;
- }
- }
- void Delay100us() //@11.0592MHz
- {
- unsigned char i, j;
- i = 2;
- j = 15;
- do
- {
- while (--j);
- } while (--i);
- }
復制代碼
更多資料請移步工作室百度網盤下載
工作室百度網盤: http://pan點baidu點com/share/home?uk=3691829170 包含工作室教學視頻、教學資料和網絡作品資料下載
|