├── .gitignore ├── LICENSE ├── Queue_System ├── QueueSystem_proteus_simulation │ ├── .empty │ ├── Backup Of QueueSystem.pdsbak │ ├── Last Loaded QueueSystem.pdsbak │ ├── QueueSystem.pdsprj │ └── QueueSystem.pdsprj.DESKTOP-AUBEHH3.南澈.workspace ├── README.md ├── resources │ ├── 4位数码管引脚.png │ ├── 74HC573AN.pdf │ ├── YF017.pdf │ ├── YF017基本应用电路.png │ ├── YF017语音内容.png │ ├── proteus仿真.png │ ├── proteus仿真演示.gif │ ├── 【优信电子】3_4矩阵_薄膜开关_按键.pdf │ ├── 排队叫号系统面包板连接图_1.png │ ├── 排队叫号系统面包板连接图_2.png │ └── 硬件演示.gif └── src │ ├── client │ ├── client_uart.c │ ├── client_uart.h │ ├── lcd.c │ ├── lcd.h │ └── main.c │ └── server │ ├── FIFOQUEUE.C │ ├── FIFOQUEUE.h │ ├── config.h │ ├── main.c │ ├── server_uart.c │ └── server_uart.h └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/LICENSE -------------------------------------------------------------------------------- /Queue_System/QueueSystem_proteus_simulation/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Queue_System/QueueSystem_proteus_simulation/Backup Of QueueSystem.pdsbak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/QueueSystem_proteus_simulation/Backup Of QueueSystem.pdsbak -------------------------------------------------------------------------------- /Queue_System/QueueSystem_proteus_simulation/Last Loaded QueueSystem.pdsbak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/QueueSystem_proteus_simulation/Last Loaded QueueSystem.pdsbak -------------------------------------------------------------------------------- /Queue_System/QueueSystem_proteus_simulation/QueueSystem.pdsprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/QueueSystem_proteus_simulation/QueueSystem.pdsprj -------------------------------------------------------------------------------- /Queue_System/QueueSystem_proteus_simulation/QueueSystem.pdsprj.DESKTOP-AUBEHH3.南澈.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/QueueSystem_proteus_simulation/QueueSystem.pdsprj.DESKTOP-AUBEHH3.南澈.workspace -------------------------------------------------------------------------------- /Queue_System/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/README.md -------------------------------------------------------------------------------- /Queue_System/resources/4位数码管引脚.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/resources/4位数码管引脚.png -------------------------------------------------------------------------------- /Queue_System/resources/74HC573AN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/resources/74HC573AN.pdf -------------------------------------------------------------------------------- /Queue_System/resources/YF017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/resources/YF017.pdf -------------------------------------------------------------------------------- /Queue_System/resources/YF017基本应用电路.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/resources/YF017基本应用电路.png -------------------------------------------------------------------------------- /Queue_System/resources/YF017语音内容.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/resources/YF017语音内容.png -------------------------------------------------------------------------------- /Queue_System/resources/proteus仿真.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/resources/proteus仿真.png -------------------------------------------------------------------------------- /Queue_System/resources/proteus仿真演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/resources/proteus仿真演示.gif -------------------------------------------------------------------------------- /Queue_System/resources/【优信电子】3_4矩阵_薄膜开关_按键.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/resources/【优信电子】3_4矩阵_薄膜开关_按键.pdf -------------------------------------------------------------------------------- /Queue_System/resources/排队叫号系统面包板连接图_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/resources/排队叫号系统面包板连接图_1.png -------------------------------------------------------------------------------- /Queue_System/resources/排队叫号系统面包板连接图_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/resources/排队叫号系统面包板连接图_2.png -------------------------------------------------------------------------------- /Queue_System/resources/硬件演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/resources/硬件演示.gif -------------------------------------------------------------------------------- /Queue_System/src/client/client_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/src/client/client_uart.c -------------------------------------------------------------------------------- /Queue_System/src/client/client_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/src/client/client_uart.h -------------------------------------------------------------------------------- /Queue_System/src/client/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/src/client/lcd.c -------------------------------------------------------------------------------- /Queue_System/src/client/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/src/client/lcd.h -------------------------------------------------------------------------------- /Queue_System/src/client/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/src/client/main.c -------------------------------------------------------------------------------- /Queue_System/src/server/FIFOQUEUE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/src/server/FIFOQUEUE.C -------------------------------------------------------------------------------- /Queue_System/src/server/FIFOQUEUE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/src/server/FIFOQUEUE.h -------------------------------------------------------------------------------- /Queue_System/src/server/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/src/server/config.h -------------------------------------------------------------------------------- /Queue_System/src/server/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/src/server/main.c -------------------------------------------------------------------------------- /Queue_System/src/server/server_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/src/server/server_uart.c -------------------------------------------------------------------------------- /Queue_System/src/server/server_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/Queue_System/src/server/server_uart.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevinnan-teen/MCU-Projects-Collection/HEAD/README.md --------------------------------------------------------------------------------