Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Project Documentation

Arduino Nano Wireless Communication System with nRF24L01 Module

Image of Arduino Nano Wireless Communication System with nRF24L01 Module

Circuit Documentation

Summary

This circuit integrates an nRF24L01 transceiver module with an Arduino Nano microcontroller, facilitated by an NRF24L01 Adapter. The purpose of this setup is to enable wireless communication capabilities for the Arduino Nano using the nRF24L01 module. An electrolytic capacitor is included in the circuit to stabilize the power supply to the nRF24L01 module.

Component List

nRF24L01 Transceiver Module

  • Description: A 2.4GHz wireless transceiver module.
  • Pins: GND, VCC, CE, CSN, SCK, MOSI, MISO, IRQ.

NRF24L01 Adapter

  • Description: An adapter board for the nRF24L01 module, providing voltage regulation and breakout pins.
  • Pins: CE, CSN, SCK, MOSI, MISO, IRQ, VCC, GND.

Electrolytic Capacitor

  • Description: A capacitor used for power supply filtering.
  • Pins: -, +.
  • Properties: Capacitance: 1µF (0.000001 Farads).

Arduino Nano

  • Description: A small, complete, and breadboard-friendly board based on the ATmega328 (Arduino Nano 3.x).
  • Pins: D1/TX, D0/RX, RESET, GND, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11/MOSI, D12/MISO, VIN, 5V, A7, A6, A5, A4, A3, A2, A1, A0, AREF, 3V3, D13/SCK.

Wiring Details

nRF24L01 Transceiver Module

  • No direct wiring information provided.

NRF24L01 Adapter

  • CE connected to Arduino Nano D9.
  • CSN connected to Arduino Nano D10.
  • SCK connected to Arduino Nano D13/SCK.
  • MOSI connected to Arduino Nano D11/MOSI.
  • MISO connected to Arduino Nano D12/MISO.
  • VCC connected to Arduino Nano VIN and Electrolytic Capacitor (+).
  • GND connected to Electrolytic Capacitor (-).

Electrolytic Capacitor

  • + connected to NRF24L01 Adapter VCC and Arduino Nano VIN.
  • - connected to NRF24L01 Adapter GND.

Arduino Nano

  • D9 connected to NRF24L01 Adapter CE.
  • D10 connected to NRF24L01 Adapter CSN.
  • D13/SCK connected to NRF24L01 Adapter SCK.
  • D11/MOSI connected to NRF24L01 Adapter MOSI.
  • D12/MISO connected to NRF24L01 Adapter MISO.
  • VIN connected to NRF24L01 Adapter VCC and Electrolytic Capacitor (+).

Documented Code

Arduino Nano Code (sketch.ino)

void setup() {
  // put your setup code here, to run once:

}

void loop() {
  // put your main code here, to run repeatedly:

}

Additional Documentation (documentation.txt)

No additional code documentation provided.