{"id":28200315,"url":"https://github.com/tiesen243/communication-and-control-for-computer-peripheral-devices","last_synced_at":"2026-04-25T21:32:23.582Z","repository":{"id":270039192,"uuid":"909084197","full_name":"tiesen243/communication-and-control-for-computer-peripheral-devices","owner":"tiesen243","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-17T12:51:17.000Z","size":1147,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-12T10:43:37.374Z","etag":null,"topics":["c","csharp","mikroc","pic18f4550","winforms-application"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tiesen243.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-27T17:28:51.000Z","updated_at":"2025-04-17T12:51:20.000Z","dependencies_parsed_at":"2025-02-18T04:21:55.605Z","dependency_job_id":"20af25fd-d41d-4370-863a-8291ee671e9b","html_url":"https://github.com/tiesen243/communication-and-control-for-computer-peripheral-devices","commit_stats":null,"previous_names":["tiesen243/learn-peripheral-device","tiesen243/communication-and-control-for-computer-peripheral-devices"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tiesen243/communication-and-control-for-computer-peripheral-devices","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiesen243%2Fcommunication-and-control-for-computer-peripheral-devices","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiesen243%2Fcommunication-and-control-for-computer-peripheral-devices/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiesen243%2Fcommunication-and-control-for-computer-peripheral-devices/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiesen243%2Fcommunication-and-control-for-computer-peripheral-devices/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tiesen243","download_url":"https://codeload.github.com/tiesen243/communication-and-control-for-computer-peripheral-devices/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiesen243%2Fcommunication-and-control-for-computer-peripheral-devices/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32278249,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T18:29:39.964Z","status":"ssl_error","status_checked_at":"2026-04-25T18:29:32.149Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","csharp","mikroc","pic18f4550","winforms-application"],"created_at":"2025-05-16T20:11:02.623Z","updated_at":"2026-04-25T21:32:23.576Z","avatar_url":"https://github.com/tiesen243.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Communication and Control for Computer Peripheral Devices\r\n\r\nThis project demonstrates how to communicate with and control peripheral devices using the **PIC18F4550** microcontroller and a **C# WinForms** application. It supports multiple communication methods including **USB**, **Bluetooth (COM)**, **Ethernet**, and **Wi-Fi**.\r\n\r\nFirmware is developed using **mikroC PRO for PIC**.\r\n\r\n## 📦 Project Structure\r\n\r\n```text\r\ncommunication-and-control-for-computer-peripheral-devices/\r\n│\r\n├── COM-Bluetooth/           # Serial communication via Bluetooth\r\n├── Ethernet/                # Ethernet communication (ENC28J60)\r\n├── USB/                     # USB HID communication\r\n├── Wifi/                    # Wi-Fi communication (ESP8266)\r\n├── assets/                  # Images and diagrams\r\n├── example/                 # C# WinForms GUI project\r\n├── Bai_tap_ve_nha_Ver8.pdf  # Documentation and exercises (Vietnamese)\r\n└── LICENSE                  # MIT License\r\n```\r\n\r\n## 🛠 Tools Used\r\n\r\n### Hardware\r\n\r\n- PIC18F4550 microcontroller\r\n- HC-05/HC-06 Bluetooth module\r\n- ESP8266 Wi-Fi module\r\n- ENC28J60 Ethernet module\r\n- USB connection for PC interface\r\n\r\n### Software\r\n\r\n- **mikroC PRO for PIC** – for writing and compiling firmware\r\n- **mikroProg Suite** – for programming the chip\r\n- **Visual Studio** – for developing the WinForms GUI\r\n- .NET Framework with:\r\n\t- `System.IO.Ports` for Serial COM\r\n\t- `System.Net.Sockets` for TCP/IP\r\n\r\n## 🚀 Getting Started\r\n\r\n### 🔧 mikroC Firmware\r\n\r\n1. Open a `.mcppi` project in one of the protocol folders (e.g. `USB/`, `COM-Bluetooth/`).\r\n2. Write and compile code in mikroC.\r\n3. Upload firmware to the PIC18F4550 using mikroProg.\r\n\r\n### 🖥️ C# GUI (WinForms)\r\n\r\n1. Navigate to `example/`.\r\n2. Open the `.sln` file in Visual Studio.\r\n3. Build and run the GUI.\r\n4. Select the communication method and COM port or IP.\r\n\r\n## 📜 License\r\n\r\nLicensed under the [MIT License](LICENSE).\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftiesen243%2Fcommunication-and-control-for-computer-peripheral-devices","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftiesen243%2Fcommunication-and-control-for-computer-peripheral-devices","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftiesen243%2Fcommunication-and-control-for-computer-peripheral-devices/lists"}