@Tias
Your Arduino is Mega?????
anibaldiniz
@anibaldiniz
Best posts made by anibaldiniz
Latest posts made by anibaldiniz
-
RE: Problem with Ardunio Ethernet as gateway
-
RE: Building an Ethernet Gateway on an Arduino Mega
@spugna85
Hello, I'm putting the code as you indicated, and connecting the nRF24L01 pins:
6 CSN
5 CE
Pin 50, 51, 52and message: 0;0;3;0;9;radio init fail
I link capacitor in power, I have done everything. And now????
-
RE: Problem with Ardunio Ethernet as gateway
@Tias
Hi, I'am using :in my application
#define RADIO_CE_PIN 5 // radio chip enable
#define RADIO_SPI_SS_PIN 6 // radio SPI serial selectin MyConfig.h
#define SOFTSPI
#ifdef SOFTSPI
// Define the soft SPI pins used for NRF radioconst uint8_t SOFT_SPI_MISO_PIN = 12; //A2 const uint8_t SOFT_SPI_MOSI_PIN = 11; //A1 const uint8_t SOFT_SPI_SCK_PIN = 13; //A0
#endif
the connection NRF24l01 with Uno, MISO->A2
MOSI->A1
SCK ->A0
CE -> D5
CS-> D6 -
RE: Help Me!!! Hardware problem arduino uno gateway
Hello, I only managed to make it work ties in:
#define SOFTSPI
#ifdef SOFTSPI
const uint8_t SOFT_SPI_MISO_PIN = 12; //A0
    const uint8_t SOFT_SPI_MOSI_PIN = 11; // A1
    const uint8_t SOFT_SPI_SCK_PIN = 13; // A0
#endifI do not know how to explain.