├── .gitignore ├── Image.qrc ├── Image ├── RESET.png ├── STEP.png ├── connect.png ├── connect2.png ├── connect3.png ├── exit.png ├── gamehandle.png ├── home.png ├── home1.png ├── load.png ├── load2.png ├── load3.png ├── machine.png ├── pause2.png ├── pause3.png ├── robot.jpg ├── safe.png ├── save.png ├── save2.png ├── send.png ├── send2.png ├── send3.png ├── start2.png ├── start3.png ├── statu.png ├── stop2.png ├── stop3.png ├── swift.png ├── tutorial.png └── tutorial1.png ├── actionFun.cpp ├── applicationHeader.h ├── commandFun.cpp ├── enumHeader.h ├── evenFilterBox.cpp ├── groupBoxFun1.cpp ├── groupBoxFun2.cpp ├── groupBoxFun3.cpp ├── groupBoxFun4.cpp ├── groupBoxFun5.cpp ├── homesettings.h ├── main.cpp ├── mechanicalarm.cpp ├── mechanicalarm.h ├── otherFun.cpp ├── otherHeader.h ├── serialFun.cpp ├── serialHeader.h ├── timerFun.cpp ├── uppermachine.cpp ├── uppermachine.h ├── uppermachine.pro ├── uppermachine.ui ├── uppermachine_zh_SG.ts ├── upperserial.cpp ├── upperserial.h └── upperstruct.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /Image.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image.qrc -------------------------------------------------------------------------------- /Image/RESET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/RESET.png -------------------------------------------------------------------------------- /Image/STEP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/STEP.png -------------------------------------------------------------------------------- /Image/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/connect.png -------------------------------------------------------------------------------- /Image/connect2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/connect2.png -------------------------------------------------------------------------------- /Image/connect3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/connect3.png -------------------------------------------------------------------------------- /Image/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/exit.png -------------------------------------------------------------------------------- /Image/gamehandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/gamehandle.png -------------------------------------------------------------------------------- /Image/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/home.png -------------------------------------------------------------------------------- /Image/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/home1.png -------------------------------------------------------------------------------- /Image/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/load.png -------------------------------------------------------------------------------- /Image/load2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/load2.png -------------------------------------------------------------------------------- /Image/load3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/load3.png -------------------------------------------------------------------------------- /Image/machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/machine.png -------------------------------------------------------------------------------- /Image/pause2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/pause2.png -------------------------------------------------------------------------------- /Image/pause3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/pause3.png -------------------------------------------------------------------------------- /Image/robot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/robot.jpg -------------------------------------------------------------------------------- /Image/safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/safe.png -------------------------------------------------------------------------------- /Image/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/save.png -------------------------------------------------------------------------------- /Image/save2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/save2.png -------------------------------------------------------------------------------- /Image/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/send.png -------------------------------------------------------------------------------- /Image/send2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/send2.png -------------------------------------------------------------------------------- /Image/send3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/send3.png -------------------------------------------------------------------------------- /Image/start2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/start2.png -------------------------------------------------------------------------------- /Image/start3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/start3.png -------------------------------------------------------------------------------- /Image/statu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/statu.png -------------------------------------------------------------------------------- /Image/stop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/stop2.png -------------------------------------------------------------------------------- /Image/stop3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/stop3.png -------------------------------------------------------------------------------- /Image/swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/swift.png -------------------------------------------------------------------------------- /Image/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/tutorial.png -------------------------------------------------------------------------------- /Image/tutorial1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/Image/tutorial1.png -------------------------------------------------------------------------------- /actionFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/actionFun.cpp -------------------------------------------------------------------------------- /applicationHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/applicationHeader.h -------------------------------------------------------------------------------- /commandFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/commandFun.cpp -------------------------------------------------------------------------------- /enumHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/enumHeader.h -------------------------------------------------------------------------------- /evenFilterBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/evenFilterBox.cpp -------------------------------------------------------------------------------- /groupBoxFun1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/groupBoxFun1.cpp -------------------------------------------------------------------------------- /groupBoxFun2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/groupBoxFun2.cpp -------------------------------------------------------------------------------- /groupBoxFun3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/groupBoxFun3.cpp -------------------------------------------------------------------------------- /groupBoxFun4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/groupBoxFun4.cpp -------------------------------------------------------------------------------- /groupBoxFun5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/groupBoxFun5.cpp -------------------------------------------------------------------------------- /homesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/homesettings.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/main.cpp -------------------------------------------------------------------------------- /mechanicalarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/mechanicalarm.cpp -------------------------------------------------------------------------------- /mechanicalarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/mechanicalarm.h -------------------------------------------------------------------------------- /otherFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/otherFun.cpp -------------------------------------------------------------------------------- /otherHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/otherHeader.h -------------------------------------------------------------------------------- /serialFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/serialFun.cpp -------------------------------------------------------------------------------- /serialHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/serialHeader.h -------------------------------------------------------------------------------- /timerFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/timerFun.cpp -------------------------------------------------------------------------------- /uppermachine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/uppermachine.cpp -------------------------------------------------------------------------------- /uppermachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/uppermachine.h -------------------------------------------------------------------------------- /uppermachine.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/uppermachine.pro -------------------------------------------------------------------------------- /uppermachine.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/uppermachine.ui -------------------------------------------------------------------------------- /uppermachine_zh_SG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/uppermachine_zh_SG.ts -------------------------------------------------------------------------------- /upperserial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/upperserial.cpp -------------------------------------------------------------------------------- /upperserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/upperserial.h -------------------------------------------------------------------------------- /upperstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2782694792/arduinoArmSystem/HEAD/upperstruct.h --------------------------------------------------------------------------------