<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[No radio signal with using ETHERNET Shield]]></title><description><![CDATA[<p dir="auto">I wanna build a sensor network that includes just two node. One node transmits sensor values, the other one is load the values to internet. Without ethernet shield, nodes communicated each other. Then, with ethernet shield, i used mysensor library, softspi etc. i didn't get anything. I thought, maybe my ethernet shield was broken, but it is working fine without NRF24L01. i wanted to look radio signals using softspi with ethernet but it didn't upload internet( because i can't do it.). I tried codes to get sensor values. But only i  see "no signal available".  So, i don't understand anything about softspi, using nrf24l01 with ethernetshield. my nrf24l01 connections are =<br />
A2	MISO	<br />
A1	MOSI	<br />
A0	SCK	<br />
6	CSN	<br />
5	CE</p>
<p dir="auto">------------my transmitter code is;------------------------</p>
<p dir="auto">#include &lt;SPI.h&gt;<br />
#include &lt;nRF24L01.h&gt;<br />
#include &lt;RF24.h&gt;<br />
/<em>-----( Declare Constants and Pin Numbers )-----</em>/<br />
#define CE_PIN   9<br />
#define CSN_PIN 10</p>
<p dir="auto">// NOTE: the "LL" at the end of the constant is "LongLong" type<br />
const uint64_t pipe = 0xE8E8F0F0E1LL; // Define the transmit pipe</p>
<p dir="auto">/<em>-----( Declare objects )-----</em>/<br />
RF24 radio(CE_PIN, CSN_PIN); // Create a Radio<br />
/<em>-----( Declare Variables )-----</em>/<br />
int signal[2];  // 2 element array holding Joystick readings</p>
<p dir="auto">void setup()   /****** SETUP: RUNS ONCE ******/<br />
{<br />
Serial.begin(9600);<br />
radio.begin();<br />
radio.openWritingPipe(pipe);<br />
}//--(end setup )---</p>
<p dir="auto">void loop()<br />
{<br />
signal[0] = 1;<br />
signal[1] = 0;</p>
<p dir="auto">radio.write( signal, sizeof(signal) );</p>
<p dir="auto">}</p>
<p dir="auto">//<em><strong><strong><strong><strong>( THE END )</strong></strong></strong></strong></em>**</p>
<p dir="auto">-----------------------my receiver code;------------------------------------</p>
<p dir="auto">#include &lt;SPI.h&gt;<br />
#include &lt;nRF24L01.h&gt;<br />
#include &lt;RF24.h&gt;<br />
#include &lt;DigitalIO.h&gt;<br />
#include &lt;DigitalPin.h&gt;<br />
#include &lt;I2cConstants.h&gt;<br />
#include &lt;nRF24L01.h&gt;<br />
#include &lt;PinIO.h&gt;</p>
<p dir="auto">#include &lt;RF24_config.h&gt;<br />
#include &lt;SoftI2cMaster.h&gt;<br />
#include &lt;SoftSPI.h&gt;</p>
<p dir="auto">/<em>-----( Declare Constants and Pin Numbers )-----</em>/<br />
#define CE_PIN   5<br />
#define CSN_PIN 6</p>
<p dir="auto">// NOTE: the "LL" at the end of the constant is "LongLong" type<br />
const uint64_t pipe = 0xE8E8F0F0E1LL; // Define the transmit pipe</p>
<p dir="auto">/<em>-----( Declare objects )-----</em>/<br />
RF24 radio(CE_PIN, CSN_PIN); // Create a Radio<br />
/<em>-----( Declare Variables )-----</em>/<br />
int joystick[2];  // 2 element array holding Joystick readings</p>
<p dir="auto">void setup()   /****** SETUP: RUNS ONCE ******/<br />
{<br />
Serial.begin(9600);<br />
delay(1000);<br />
Serial.println("Nrf24L01 Receiver Starting");<br />
radio.begin();<br />
radio.openReadingPipe(1,pipe);<br />
radio.startListening();;<br />
}//--(end setup )---</p>
<p dir="auto">void loop()<br />
{<br />
if ( radio.available() )<br />
{<br />
// Read the data payload until we've received everything<br />
bool done = false;<br />
while (!done)<br />
{<br />
// Fetch the data payload<br />
done = radio.read( signal, sizeof(signal) );<br />
Serial.print("X = ");<br />
Serial.print(signal[0]);<br />
Serial.print(" Y = ");<br />
Serial.println(signal[1]);</p>
<p dir="auto">}<br />
}<br />
else<br />
{<br />
Serial.println("No radio available");<br />
}</p>
<p dir="auto">}</p>
<p dir="auto">//<em><strong><strong><strong><strong>( THE END )</strong></strong></strong></strong></em>**</p>
<p dir="auto">What am i doing wrong?  what i am missing? i get X=-1, Y=-1 WHY?? can anyone help  me?</p>
]]></description><link>https://forum.mysensors.org/topic/1373/no-radio-signal-with-using-ethernet-shield</link><generator>RSS for Node</generator><lastBuildDate>Wed, 16 Sep 2026 10:20:17 GMT</lastBuildDate><atom:link href="https://forum.mysensors.org/topic/1373.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 09 May 2015 08:15:24 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to No radio signal with using ETHERNET Shield on Sat, 09 May 2015 08:47:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/rasitd" aria-label="Profile: rasitd">@<bdi>rasitd</bdi></a> When i remove NRF24L01, i still get X=-1, Y=-1. anyone?</p>
]]></description><link>https://forum.mysensors.org/post/13780</link><guid isPermaLink="true">https://forum.mysensors.org/post/13780</guid><dc:creator><![CDATA[rasitd]]></dc:creator><pubDate>Sat, 09 May 2015 08:47:42 GMT</pubDate></item></channel></rss>