{"id":21629056,"url":"https://github.com/c47d/nrf24_example_projects","last_synced_at":"2026-01-04T12:06:46.147Z","repository":{"id":264481932,"uuid":"103003212","full_name":"C47D/nRF24_Example_Projects","owner":"C47D","description":"Example projects using the nRF24 component for PSoC devices.","archived":false,"fork":false,"pushed_at":"2020-04-12T18:21:41.000Z","size":4198,"stargazers_count":4,"open_issues_count":0,"forks_count":5,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-24T23:17:46.861Z","etag":null,"topics":["nrf24","psoc"],"latest_commit_sha":null,"homepage":"","language":"OpenEdge ABL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/C47D.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2017-09-10T04:22:25.000Z","updated_at":"2024-03-23T08:38:11.000Z","dependencies_parsed_at":"2024-11-24T16:50:40.109Z","dependency_job_id":null,"html_url":"https://github.com/C47D/nRF24_Example_Projects","commit_stats":null,"previous_names":["c47d/nrf24_example_projects"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/C47D%2FnRF24_Example_Projects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/C47D%2FnRF24_Example_Projects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/C47D%2FnRF24_Example_Projects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/C47D%2FnRF24_Example_Projects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/C47D","download_url":"https://codeload.github.com/C47D/nRF24_Example_Projects/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244306045,"owners_count":20431737,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["nrf24","psoc"],"created_at":"2024-11-25T02:04:55.232Z","updated_at":"2026-01-04T12:06:41.116Z","avatar_url":"https://github.com/C47D.png","language":"OpenEdge ABL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nRF24 Example Projects\n\nThis repository contain multiple example projects using the nRF24 component for PSoC devices.\nThe nRF24 component is developed in a separated repository, you can see it here: [nRF24_Component](https://github.com/C47D/nRF24_Component).\n\nThis projects are developed using PSoC Creator 4.1 and multiple PSoC kits, PSoC 4200 devices, PSoC 4S, PSoC 4M and PSoC 5LP devices.\n\n\nTo clone this repo:\n```\n$ git clone https://github.com/C47D/nRF24_Example_Projects\n$ cd nRF24_Example_Projects\nnRF24_Example_Projects $ git submodule init\nnRF24_Example_Projects $ git submodule update\n```\n\nor\n\n```\n$ git clone --recursive https://github.com/C47D/nRF24_Example_Projects\n```\n\nTo update the submodule:\n```\nnRF24_Example_Projects $ git submodule update --remote nRF24_Component\n```\n\n# Projects\n\nFor details each project directory have it's own README, the following list is just an overview.\n\n## 00 Basic (Working)\nIn this project the PSoC Tx will get 1 char from the UART component and send it with the Tx radio to the Rx radio, the Rx radio will trigger an interrupt when it receive the data and the PSoC Rx will get the data and print it via UART.\n\nUsed PSoCs:\nPSoC Rx: CY8CKIT-041-40xx (PSoC4000S)\nPSoC Tx: CY8CKIT-042 (PSoC4200)\n\n```\n                PSoC Tx            nRF24 Tx                   nRF24 Rx             PSoC Rx\n              +---------+  MOSI  +----------+               +-----------+  MOSI  +----------+\n   UART       |         +-------\u003e+          |               |           \u003c--------+          |            UART\n+--------+ TX |         |  MISO  |          |               |           |  MISO  |          |  DATA   +---------+\n|        +----\u003e         \u003c--------+          |     DATA      |           +--------\u003e          +--------\u003e|         |\n+--------+    |         |  SCLK  |          |  +---------\u003e  |           |  SCLK  |          |         +---------+\n              |         +-------\u003e+          |               |           \u003c--------+          |\n              |         |  /SS   |          |               |           |  /SS   |          |\n              |         +-------\u003e+          |               |           \u003c--------+          |\n              |         |  CE    |          |               |           |  CE    |          |\n              |         +-------\u003e+          |               |           \u003c--------+          |\n              |         |  IRQ   |          |               |           |  IRQ   |          |\n              |         +--------+          |               |           +--------\u003e          |\n              +---------+        +----------+               +-----------+        +----------+\n```\n\n## 01 Echo (Working)\nIn this project the PSoC Tx will get 1 byte from the UART component and send it with the Tx radio to the Rx radio, the Rx radio will trigger an interrupt when it receive the data and it will reply back with an ACK packet + a 1 byte payload, this payload (COUNT variable) contains the count of received packets, the Tx radio will receive the ACK packet with the 1 byte payload from the Rx radio and print it via UART.\n\nUsed PSoCs:\nPSoC Rx: CY8CKIT-059 (PSoC5LP)\nPSoC Tx: CY8CKIT-042 (PSoC4200)\n\n```\n                PSoC Tx            nRF24 Tx                   nRF24 Rx             PSoC Rx\n              +---------+  MOSI  +----------+               +-----------+  MOSI  +----------+\n   UART       |         +-------\u003e+          |               |           \u003c--------+          |\n+--------+ TX |         |  MISO  |          |               |           |  MISO  |          |\n|        +----\u003e         \u003c--------+          |     DATA      |           +--------\u003e          |\n+--------+    |         |  SCLK  |          |  +---------\u003e  |           |  SCLK  |          |\n              |         +-------\u003e+          |               |           \u003c--------+          |\n              |         |  /SS   |          |               |           |  /SS   |          |\n              |         +-------\u003e+          |     COUNT     |           \u003c--------+          |\n              |         |  CE    |          |  \u003c----------  |           |  CE    |          |\n              |         +-------\u003e+          |               |           \u003c--------+          |\n              |         |  IRQ   |          |               |           |  IRQ   |          |\n              |         +--------+          |               |           +--------\u003e          |\n              +---------+        +----------+               +-----------+        +----------+\n```\n\n## Custom SPI DMA\n\nHere the user uses a custom function to handle all the SPI communication via DMA. Available since component v3.0.\n\n## More examples to come...\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc47d%2Fnrf24_example_projects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fc47d%2Fnrf24_example_projects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc47d%2Fnrf24_example_projects/lists"}