RF24Network
OSI Layer 3 Networking for nRF24L01(+) and nRF52x on Arduino and Raspberry Pi
파일 탐색기
최종 버전 다운로드 (.zip)- build_arduino.yml
- build_linux.yml
- build_nrf_to_nrf.yml
- build_platformIO.yml
- build_rp2xxx.yml
- clang_format.yml
- doxygen.yml
- dependabot.yml
- doxygen.py
- arm64.cmake
- armhf.cmake
- default.cmake
- i686.cmake
- x86_64.cmake
- AutoConfig_RF24_DRIVER.cmake
- Cache.cmake
- CompilerWarnings.cmake
- CPackInfo.cmake
- detectCPU.cmake
- GetLibInfo.cmake
- PreventInSourceBuilds.cmake
- StandardProjectSettings.cmake
- usePicoSDK.cmake
- favicon.ico
- Logo large.png
- addressing.md
- advanced_config.md
- Doxyfile
- doxygen-custom.css
- main_page.md
- README.md
- tuning.md
- zigabee.md
- helloworld_rx.ino
- helloworld_rx_advanced.ino
- helloworld_tx.ino
- helloworld_tx_advanced.ino
- Network_Ping.ino
- Network_Ping_Sleep.ino
- Network_Priority_RX.ino
- Network_Priority_TX.ino
- helloworld_rx.ino
- helloworld_rxEncryption.ino
- helloworld_tx.ino
- helloworld_txEncryption.ino
- .clang-format
- sensornet_archived.zip
- CMakeLists.txt
- defaultPins.h
- helloworld_rx.cpp
- helloworld_tx.cpp
- CMakeLists.txt
- helloworld_rx.cpp
- helloworld_tx.cpp
- Makefile
- rx-test.cpp
- temperature.txt
- example_tree.dot
- example_tree.svg
- topologyImage.jpg
- topologyImage_Advanced.jpg
- topologyImage_Advanced.xcf
- topologyImage_Advanced_Multicast.jpg
- topologyImage_Advanced_Multicast.xcf
- helloworld_rx.py
- helloworld_tx.py
- pyproject.toml
- pyRF24Network.cpp
- README.md
- setup.py
- .clang-format
- .clang-tidy
- .gitattributes
- .gitignore
- .readthedocs.yaml
- AGENTS.md
- CHANGELOG.md
- CMakeLists.txt
- CONTRIBUTING.md
- library.json
- library.properties
- LICENSE
- Makefile
- nurfile
- README.md
- RF24Network.cpp
- RF24Network.h
- RF24Network_config.h
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/nRF24/RF24Network
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd RF24Network
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. CMake
보통 추천사전 준비물
mkdir build && cd build
빌드 결과물을 담을 폴더를 만들고 그 안으로 이동합니다.
cmake ..
소스코드를 분석해 빌드 설정 파일을 생성합니다 (build 폴더 안에서 실행해야 함).
make
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
build 폴더 안에 실행 파일이 생성됐는지 확인하고, 직접 실행해보세요 (예: ./build/앱이름).
3. Python
쉬움사전 준비물
⚠️ 이 프로젝트는 규모가 큰 저장소라, 이 방법이 실제 핵심 제품이 아니라 내부 하위 패키지를 가리키는 것일 수 있습니다. README 전체를 함께 확인해보세요.
pip install .
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
python <실행할 파일명>.py # README에서 정확한 실행 파일명을 확인하세요
파이썬 스크립트(또는 모듈)를 실행합니다.
에러 메시지 없이 실행되고 터미널에 안내 문구가 출력되면 정상입니다.
4. Make
보통사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Make Linux/macOS는 보통 기본 설치되어 있습니다. Windows는 별도 설치(예: MSYS2, WSL)가 필요합니다.
make
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
에러 없이 끝나면 성공입니다. 생성된 실행 파일을 직접 실행해보세요.
// repository documentation
Was this content helpful?
(0 ratings)
