<?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[[Tutorial] Raspberry Pi NRF24l01 direct connection]]></title><description><![CDATA[<p dir="auto"><strong>[EDIT] - I uploaded a script in the next post that does everything I explained below</strong></p>
<p dir="auto">I have installed MINImal raspBIAN which is a raspBIAN without a gui. So this should work for you guys.</p>
<p dir="auto">First of all you have to<br />
<strong>1. Undo your Overclock</strong>. If you have any. (SPI does not like Overclocked pi's)</p>
<p dir="auto"><strong>2. Enable SPI</strong></p>
<p dir="auto">Details:</p>
<p dir="auto">On a <strong>normal raspbian image</strong> this can be done either on a fresh install (when you config your pi) or you can type in terminal <code>sudo raspi-config</code><br />
From there you go into <strong>ADVANCED OPTIONS</strong> -&gt; <strong>SPI</strong></p>
<p dir="auto">On a <strong>minimal image</strong> you don't have the luxury of raspi-config. You have to manually activate it.<br />
(I already had it enabled but you can check)<br />
(If you don't have sudo installed on your image just run <code>apt-get install sudo</code>)</p>
<p dir="auto"><code>sudo nano /etc/modprobe.d/raspi-blacklist.conf</code></p>
<p dir="auto">Make sure there IS a # before blacklist spi-bcm2708, so it looks like this…<br />
<code>#blacklist spi-bcm2708</code></p>
<p dir="auto">If there is no line like that, you can add it. It won't do any harm.<br />
<strong>CTRL+O - Save<br />
ENTER - Confirm<br />
CTRL+X - Exit</strong></p>
<p dir="auto">or</p>
<p dir="auto"><strong>CTRL+X - Exit<br />
y - I want to save the file<br />
ENTER - Confirm</strong></p>
<p dir="auto">We have to edit now the config.txt.<br />
<code>sudo nano /boot/config.txt</code></p>
<p dir="auto">add this to the end of the line<br />
<code> dtparam=spi=on</code></p>
<p dir="auto">Save and exit.</p>
<p dir="auto">Reboot your pi.<br />
<code> sudo reboot</code></p>
<p dir="auto">Enjoy using SPI. (<a href="http://raspi.tv/how-to-enable-spi-on-the-raspberry-pi" rel="nofollow ugc">Source</a>)</p>
<p dir="auto">3.<strong>Downloading the files</strong></p>
<p dir="auto">Details:</p>
<p dir="auto">You have 2 options. <strong>wget</strong> and <strong>git-clone</strong>. I'll start with:</p>
<p dir="auto">a. <strong>git-clone</strong></p>
<p dir="auto">If you don't have <strong>git-clone</strong> you need to install the git tools. (Yes, git is related to github)<br />
<code>sudo apt-get install git</code></p>
<p dir="auto">After you installed git you simply navigate to the folder that you wish to install the program and type:<br />
<code>sudo git-clone https://github.com/mysensors/Raspberry.git</code></p>
<p dir="auto">This will download a zip, unarchive it and.. It does all the jobs for you.</p>
<p dir="auto">b. <strong>wget</strong></p>
<p dir="auto">Some ppl are old-school and go the hard way or they just enjoy it done this way.</p>
<p dir="auto">Navigate to the folder that you wish to install the program and type:<br />
<code>wget https://github.com/mysensors/Raspberry/archive/master.zip</code> (this will download you the zip)</p>
<p dir="auto">Unzip the file</p>
<p dir="auto">If you don't have <strong>unzip</strong> installed just type<br />
<code>sudo apt-get install unzip</code></p>
<p dir="auto"><code>unzip master.zip -d /home/pi/Raspberry</code> (you can specify any directory that you want instead of the <strong>/home/pi/Raspberry</strong>)</p>
<p dir="auto">4.<strong>Edit and compile what you downloaded</strong></p>
<p dir="auto">In the Raspberry folder you have some <strong>files</strong> and some <strong>folders</strong>.<br />
The majority of ppl (including me) forget to <strong>complile the libs for the NRF24l01</strong>.<br />
This is the library provided by [TMRH20]{<a href="http://tmrh20.github.io" rel="nofollow ugc">http://tmrh20.github.io</a>} (He has some interesting stuff there including an audio library for NRF24l01.)<br />
Back to our stuff.<br />
Go to the Raspberry folder then into librf24-bcm.<br />
<code>cd Raspberry/librf24-bcm/</code></p>
<p dir="auto">Type<br />
<code>make</code></p>
<p dir="auto">Go back to the Raspberry folder<br />
<code>cd ..</code></p>
<p dir="auto">Type<br />
<code>make</code><br />
5.<strong>Connecting the NRF</strong></p>
<p dir="auto">Mister TMRH20 tells us that we need to connect the NRF24l01 this way</p>
<pre><code>PIN		NRF24L01	RPI				RPi -P1 Connector
1		GND			rpi-gnd			(25)
2		VCC			rpi-3v3			(17)
3		CE			rpi-gpio22		(15)
4		CSN			rpi-gpio8		(24)
5		SCK			rpi-sckl		(23)
6		MOSI		rpi-mosi		(19)
7		MISO		rpi-miso		(21)
8		IRQ			Not Connected
</code></pre>
<p dir="auto">Connect everything like that <strong>except for the CE pin</strong></p>
<p dir="auto">Run the <strong>PiGatewaySerial</strong><br />
<code>./PiGatewaySerial</code></p>
<p dir="auto">It shoud prin something like this:</p>
<pre><code>Starting PiGatewaySerial...
Protocol version - 1.4
Created PTY '/dev/pts/1'
Gateway tty: /dev/ttyMySensorsGateway
================ SPI Configuration ================
CSN Pin          = CE0 (PI Hardware Driven)
CE Pin           = Custom GPIO25
Clock Speed      = 8 Mhz
================ NRF Configuration ================
STATUS           = 0x0e RX_DR=0 TX_DS=0 MAX_RT=0 RX_P_NO=7 TX_FULL=0
RX_ADDR_P0-1     = 0xe7e7e7e7e7 0xc2c2c2c2c2
RX_ADDR_P2-5     = 0xff 0xc4 0xc5 0xc6
TX_ADDR          = 0xe7e7e7e7e7
RX_PW_P0-6       = 0x00 0x00 0x20 0x00 0x00 0x00
EN_AA            = 0x3b
EN_RXADDR        = 0x07
RF_CH            = 0x10
RF_SETUP         = 0x23
CONFIG           = 0x0e
DYNPD/FEATURE    = 0x3f 0x06
Data Rate        = 250KBPS
Model            = nRF24L01+
CRC Length       = 16 bits
PA Power         = PA_LOW
</code></pre>
<p dir="auto">Look at line 7  <code> CE Pin = Custom GPIO25</code><br />
Connect the CE pin where it says you should.</p>
<p dir="auto">Here are some pictures with the GPIO connector on the rPi.<br />
<a href="https://www.google.ro/search?q=raspberry+pi+gpio&amp;tbm=isch" rel="nofollow ugc">https://www.google.ro/search?q=raspberry+pi+gpio&amp;tbm=isch</a></p>
]]></description><link>https://forum.mysensors.org/topic/1151/tutorial-raspberry-pi-nrf24l01-direct-connection</link><generator>RSS for Node</generator><lastBuildDate>Sat, 06 Jun 2026 17:47:16 GMT</lastBuildDate><atom:link href="https://forum.mysensors.org/topic/1151.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 24 Mar 2015 22:32:23 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Mon, 24 Apr 2017 20:39:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fat-fly" aria-label="Profile: Fat-Fly">@<bdi>Fat-Fly</bdi></a><br />
MySensors is now natively supported to run on Raspberry. See here for instruction on how to build:<br />
<a href="https://www.mysensors.org/build/raspberry" rel="nofollow ugc">https://www.mysensors.org/build/raspberry</a></p>
]]></description><link>https://forum.mysensors.org/post/65218</link><guid isPermaLink="true">https://forum.mysensors.org/post/65218</guid><dc:creator><![CDATA[hek]]></dc:creator><pubDate>Mon, 24 Apr 2017 20:39:31 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Mon, 24 Apr 2017 07:12:07 GMT]]></title><description><![CDATA[<p dir="auto">This is working with latest mysensors library ?</p>
]]></description><link>https://forum.mysensors.org/post/65152</link><guid isPermaLink="true">https://forum.mysensors.org/post/65152</guid><dc:creator><![CDATA[Fat Fly]]></dc:creator><pubDate>Mon, 24 Apr 2017 07:12:07 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Tue, 17 Jan 2017 20:40:52 GMT]]></title><description><![CDATA[<p dir="auto">Hi</p>
<p dir="auto">the easiest way is to run directly in background:</p>
<pre><code>nohup sudo python script.py &amp;
</code></pre>
<p dir="auto">or - run script as a service and use it as other services, but above is the easiest.</p>
<p dir="auto">Adam</p>
]]></description><link>https://forum.mysensors.org/post/57400</link><guid isPermaLink="true">https://forum.mysensors.org/post/57400</guid><dc:creator><![CDATA[lasicmk2]]></dc:creator><pubDate>Tue, 17 Jan 2017 20:40:52 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Tue, 17 Jan 2017 20:15:37 GMT]]></title><description><![CDATA[<p dir="auto">Hello all,<br />
I hope someone can help with this.</p>
<p dir="auto">Is there any way to run the generated ./PiGatewaySerial application in the background? I've got mine to work perfectly but only if I SSH into my Pi and execute the app using "sudo ./PiGatewaySerial". I'm looking to run this as a background service/application. Whichever is easier.</p>
<p dir="auto">Thanks in advance</p>
]]></description><link>https://forum.mysensors.org/post/57390</link><guid isPermaLink="true">https://forum.mysensors.org/post/57390</guid><dc:creator><![CDATA[t481]]></dc:creator><pubDate>Tue, 17 Jan 2017 20:15:37 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Sat, 23 Apr 2016 03:55:58 GMT]]></title><description><![CDATA[<p dir="auto">make file has changes and there is no more librf24-bcm.  Refer to the readme on the git and follow them</p>
]]></description><link>https://forum.mysensors.org/post/37455</link><guid isPermaLink="true">https://forum.mysensors.org/post/37455</guid><dc:creator><![CDATA[jerseyguy1996]]></dc:creator><pubDate>Sat, 23 Apr 2016 03:55:58 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Fri, 04 Dec 2015 11:27:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mfalkvidd" aria-label="Profile: mfalkvidd">@<bdi>mfalkvidd</bdi></a> Thanks you very much sir!</p>
]]></description><link>https://forum.mysensors.org/post/25758</link><guid isPermaLink="true">https://forum.mysensors.org/post/25758</guid><dc:creator><![CDATA[ArieKanarie]]></dc:creator><pubDate>Fri, 04 Dec 2015 11:27:54 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Thu, 03 Dec 2015 22:42:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mfalkvidd" aria-label="Profile: mfalkvidd">@<bdi>mfalkvidd</bdi></a> said in <a href="/topic/2437/step-by-step-procedure-to-connect-the-nrf24l01-to-the-gpio-pins-and-use-the-raspberry-as-a-serial-gateway/25">Step-by-step procedure to connect the NRF24L01 to the GPIO pins and use the Raspberry as a Serial Gateway.</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/eawo" aria-label="Profile: Eawo">@<bdi>Eawo</bdi></a> Yes, it should work. I ran Domoticz and MySensors Gateway on my Raspberry Pi 1 when I first tried MySensors. If I remember correctly I had to connect CE to pin 15 instead of 22 but I am not sure why. Try using the same connections as on your Raspberry Pi 2 first, and switch CE pin if you get "check wires". Please report back here how it goes, so I can add the necessary information to the original post.</p>
</blockquote>
<p dir="auto">For what it's worth, this is correct.  I'm currently running on a Pi 1 and put CE on 15.</p>
<p dir="auto">I followed these instructions and it worked perfectly with no fuss:   <a href="http://forum.mysensors.org/topic/1151/tutorial-raspberry-pi-nrf24l01-direct-connection" rel="nofollow ugc">http://forum.mysensors.org/topic/1151/tutorial-raspberry-pi-nrf24l01-direct-connection</a></p>
]]></description><link>https://forum.mysensors.org/post/25737</link><guid isPermaLink="true">https://forum.mysensors.org/post/25737</guid><dc:creator><![CDATA[tbully]]></dc:creator><pubDate>Thu, 03 Dec 2015 22:42:24 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Thu, 03 Dec 2015 20:38:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ariekanarie" aria-label="Profile: ArieKanarie">@<bdi>ArieKanarie</bdi></a> Mysensors USB gateway is correct. I think you need to perform the steps mentioned in section "Enable the gateway for use with Domoticz" at <a href="http://forum.mysensors.org/topic/2437/step-by-step-procedure-to-connect-the-nrf24l01-to-the-gpio-pins-and-use-the-raspberry-as-a-serial-gateway?page=1" rel="nofollow ugc">http://forum.mysensors.org/topic/2437/step-by-step-procedure-to-connect-the-nrf24l01-to-the-gpio-pins-and-use-the-raspberry-as-a-serial-gateway?page=1</a></p>
]]></description><link>https://forum.mysensors.org/post/25725</link><guid isPermaLink="true">https://forum.mysensors.org/post/25725</guid><dc:creator><![CDATA[mfalkvidd]]></dc:creator><pubDate>Thu, 03 Dec 2015 20:38:50 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Thu, 03 Dec 2015 20:23:03 GMT]]></title><description><![CDATA[<p dir="auto">It might be a stupid question, but I've been staring at my screen for hours now, and can't find the solution.<br />
How do i install/ connect this gatewatay in domoticz?</p>
<p dir="auto">I have a Raberry Pi (2) with domoticz installed, followd this tutorial and connected the NRF24l01 directly to the gpio, and according to the printout everything works.</p>
<p dir="auto">So took a Arduino Uno, connected a magnetic doorsensor and a NRF24l01 and uploaded the right sketch,  all ok and it even seems that the Raspberry is receiveing the data<br />
<img src="/uploads/files/1449174060523-pigateway.png" alt="pigateway.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">But what kind of gateway do I select in Domoticz?<br />
When I select Mysensors USB gateway I can't choose a serial port (seem legit since there is no usb connected), what hardware do I select??</p>
]]></description><link>https://forum.mysensors.org/post/25722</link><guid isPermaLink="true">https://forum.mysensors.org/post/25722</guid><dc:creator><![CDATA[ArieKanarie]]></dc:creator><pubDate>Thu, 03 Dec 2015 20:23:03 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Tue, 10 Nov 2015 03:18:09 GMT]]></title><description><![CDATA[<p dir="auto">Hello everyone!  Great work here!   I see this is still running the 1.4 protocol, is that right?  I was able to get this working but only my temp sensors would respond.  Anything where I had to send data wouldn't work.</p>
<p dir="auto">Any chance of moving to 1.5 in the near future?</p>
<p dir="auto">Thanks!</p>
]]></description><link>https://forum.mysensors.org/post/24247</link><guid isPermaLink="true">https://forum.mysensors.org/post/24247</guid><dc:creator><![CDATA[tbully]]></dc:creator><pubDate>Tue, 10 Nov 2015 03:18:09 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Fri, 30 Oct 2015 09:59:18 GMT]]></title><description><![CDATA[<p dir="auto">Thanks for your answer, I am going to try that this weekend.</p>
]]></description><link>https://forum.mysensors.org/post/23711</link><guid isPermaLink="true">https://forum.mysensors.org/post/23711</guid><dc:creator><![CDATA[Mediacj]]></dc:creator><pubDate>Fri, 30 Oct 2015 09:59:18 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Wed, 28 Oct 2015 16:51:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mediacj" aria-label="Profile: Mediacj">@<bdi>Mediacj</bdi></a> I too had this error. The only way I was ever to solve this was to take a fresh image of Wheezy and start from scratch there. No sudo apt-get updated/upgrade until after I built the lib.</p>
]]></description><link>https://forum.mysensors.org/post/23625</link><guid isPermaLink="true">https://forum.mysensors.org/post/23625</guid><dc:creator><![CDATA[wergeld]]></dc:creator><pubDate>Wed, 28 Oct 2015 16:51:34 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Wed, 28 Oct 2015 14:49:59 GMT]]></title><description><![CDATA[<p dir="auto">I'am trying to get this working on my Raspberry Pi 2 B with Raspbian but when using the <a href="http://setup.sh" rel="nofollow ugc">setup.sh</a> command I get this error:</p>
<p dir="auto">bcm2835.c: In function ‘bcm2835_init’:<br />
bcm2835.c:1207:28: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1208:28: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1209:28: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1210:28: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1211:28: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1212:28: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1213:28: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1214:28: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1228:83: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1232:81: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1236:81: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1239:83: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1242:83: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1246:83: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1249:83: error: invalid suffix "x" on integer constant<br />
bcm2835.c:1253:79: error: invalid suffix "x" on integer constant<br />
Makefile:52: recipe for target 'bcm2835.o' failed<br />
make: *** [bcm2835.o] Error 1</p>
<p dir="auto">Any idea what is going wrong? Thanks in advance!</p>
]]></description><link>https://forum.mysensors.org/post/23615</link><guid isPermaLink="true">https://forum.mysensors.org/post/23615</guid><dc:creator><![CDATA[Mediacj]]></dc:creator><pubDate>Wed, 28 Oct 2015 14:49:59 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Tue, 27 Oct 2015 17:14:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jelluz" aria-label="Profile: jelluz">@<bdi>jelluz</bdi></a><br />
I have got he sme configuration between Arduiono et  a PIGATEWAYSERIAL ?<br />
How do you declare it into a controler like Pimatic (you says that it works fine)<br />
Tkd for your advice</p>
]]></description><link>https://forum.mysensors.org/post/23551</link><guid isPermaLink="true">https://forum.mysensors.org/post/23551</guid><dc:creator><![CDATA[jpbabou]]></dc:creator><pubDate>Tue, 27 Oct 2015 17:14:05 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Sun, 11 Oct 2015 14:36:53 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/daniel-oliveira" aria-label="Profile: Daniel-Oliveira">@<bdi>Daniel-Oliveira</bdi></a>,</p>
<p dir="auto">I've talked with <a class="plugin-mentions-user plugin-mentions-a" href="/user/anticimex" aria-label="Profile: Anticimex">@<bdi>Anticimex</bdi></a>  and <a class="plugin-mentions-user plugin-mentions-a" href="/user/thozza" aria-label="Profile: thozza">@<bdi>thozza</bdi></a> about it... We think it would be best to move the RPi build file and any eventual support libs into the main MySensors repo to keep it in sync with the rest .</p>
<p dir="auto">Not sure if <a class="plugin-mentions-user plugin-mentions-a" href="/user/thozza" aria-label="Profile: thozza">@<bdi>thozza</bdi></a> has begun working on some autoconf script or not (did you?). But I imagine he'd appreciate any help you can contribute with.</p>
]]></description><link>https://forum.mysensors.org/post/22642</link><guid isPermaLink="true">https://forum.mysensors.org/post/22642</guid><dc:creator><![CDATA[hek]]></dc:creator><pubDate>Sun, 11 Oct 2015 14:36:53 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Sun, 11 Oct 2015 14:05:12 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/hek" aria-label="Profile: hek">@<bdi>hek</bdi></a></p>
<p dir="auto">I know that a lot if going on regarding the MySensors 1.6 but I would like to know the plans for the repo mysensors/Raspberry?</p>
<p dir="auto">Is there any plans to keep developing it of merging it with the main libraries?</p>
<p dir="auto">I would like to be able to run the latest version on my Pi and I'm more than willing to help making it possible :)</p>
<p dir="auto">Cheers</p>
]]></description><link>https://forum.mysensors.org/post/22637</link><guid isPermaLink="true">https://forum.mysensors.org/post/22637</guid><dc:creator><![CDATA[Daniel Oliveira]]></dc:creator><pubDate>Sun, 11 Oct 2015 14:05:12 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Mon, 07 Sep 2015 09:22:39 GMT]]></title><description><![CDATA[<p dir="auto">whether in the / dev file must be named ttyMySensorsGeteway ? if so how it developed and what it should contain</p>
]]></description><link>https://forum.mysensors.org/post/20619</link><guid isPermaLink="true">https://forum.mysensors.org/post/20619</guid><dc:creator><![CDATA[revoltec112]]></dc:creator><pubDate>Mon, 07 Sep 2015 09:22:39 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Sun, 06 Sep 2015 22:49:01 GMT]]></title><description><![CDATA[<p dir="auto"><img src="/uploads/files/1441579538416-upload-3f496795-4ae3-4ed2-b533-3f5e9fd6283e" alt="upload-3f496795-4ae3-4ed2-b533-3f5e9fd6283e" class=" img-fluid img-markdown" /></p>
<p dir="auto">Hi I am a beginner<br />
If I have something that's ok , I plugged in humidity and temperature sensor , and for what I have in front of ./PiGatewaySerial enter sudo ? ,<br />
how to make the data visible in Domoticz please help</p>
]]></description><link>https://forum.mysensors.org/post/20584</link><guid isPermaLink="true">https://forum.mysensors.org/post/20584</guid><dc:creator><![CDATA[revoltec112]]></dc:creator><pubDate>Sun, 06 Sep 2015 22:49:01 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Fri, 04 Sep 2015 01:33:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/vladut-grecu" aria-label="Profile: Vladut-Grecu">@<bdi>Vladut-Grecu</bdi></a>  - Thanks very much for the tutorial!!  After a bit of trial and error I was able to get the Pi reading my two nodes with very good reliability.</p>
<p dir="auto">I'm now trying to merge this RPi Direct Connection with the openHab With Serial Gateway that TimO was kind enough to post (<a href="http://forum.mysensors.org/topic/1194/tutorial-openhab-with-serial-gateway" rel="nofollow ugc">http://forum.mysensors.org/topic/1194/tutorial-openhab-with-serial-gateway</a>).  I had openHab working well on the RPi using an Arduino nano serial gateway using that tutorial.</p>
<p dir="auto">Running PiGatewaySerial in a terminal window yields the proper readings from the Arduino nodes but when I try to have openHab recognize the serial port "/dev/ttyMySensorsGateway" instead of the  "/dev/ttyUSB99@115200" used in the openHab tutorial I get messages from openHab saying it could not open serial port '/dev/ttyMySensorsGateway'...</p>
<p dir="auto">Just wondering if anyone else has tried to marry the two projects or has any suggestions.  (Perhaps I should also post this in TimO's openHab thread...)</p>
]]></description><link>https://forum.mysensors.org/post/20398</link><guid isPermaLink="true">https://forum.mysensors.org/post/20398</guid><dc:creator><![CDATA[GrantsPi]]></dc:creator><pubDate>Fri, 04 Sep 2015 01:33:30 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Thu, 03 Sep 2015 16:59:33 GMT]]></title><description><![CDATA[<p dir="auto">you're welcome ;)</p>
]]></description><link>https://forum.mysensors.org/post/20361</link><guid isPermaLink="true">https://forum.mysensors.org/post/20361</guid><dc:creator><![CDATA[ericvdb]]></dc:creator><pubDate>Thu, 03 Sep 2015 16:59:33 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Thu, 03 Sep 2015 16:44:44 GMT]]></title><description><![CDATA[<p dir="auto">Don't see any difference to my old entry... but pasted yours and now it works. Thank you very much <a class="plugin-mentions-user plugin-mentions-a" href="/user/ericvdb" aria-label="Profile: ericvdb">@<bdi>ericvdb</bdi></a></p>
]]></description><link>https://forum.mysensors.org/post/20359</link><guid isPermaLink="true">https://forum.mysensors.org/post/20359</guid><dc:creator><![CDATA[Anduril]]></dc:creator><pubDate>Thu, 03 Sep 2015 16:44:44 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Thu, 03 Sep 2015 16:03:23 GMT]]></title><description><![CDATA[<p dir="auto">in /etc/ser2net.conf i used:</p>
<pre><code>9003:raw:600:/dev/ttyMySensorsGateway
</code></pre>
<p dir="auto">where 9003 is the tcp port your controller needs to connect to.</p>
<p dir="auto">Remember, this allows only 1 connection, so if you want to play with multiple controllers, you can, however 1 at a time.</p>
]]></description><link>https://forum.mysensors.org/post/20356</link><guid isPermaLink="true">https://forum.mysensors.org/post/20356</guid><dc:creator><![CDATA[ericvdb]]></dc:creator><pubDate>Thu, 03 Sep 2015 16:03:23 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Thu, 03 Sep 2015 07:59:14 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/ericvdb" aria-label="Profile: ericvdb">@<bdi>ericvdb</bdi></a> ,<br />
could you please post your config for ser2net? I also tried to use my NRF24L01 connected to my RPi as ethernet gateway for MYSController, but all I got was an 'unable to bind port'.</p>
]]></description><link>https://forum.mysensors.org/post/20322</link><guid isPermaLink="true">https://forum.mysensors.org/post/20322</guid><dc:creator><![CDATA[Anduril]]></dc:creator><pubDate>Thu, 03 Sep 2015 07:59:14 GMT</pubDate></item><item><title><![CDATA[Reply to [Tutorial] Raspberry Pi NRF24l01 direct connection on Sat, 22 Aug 2015 10:09:16 GMT]]></title><description><![CDATA[<p dir="auto">I got it working, and by adding ser2net in the mix, you have a MySensors raspberry pi ethernet gateway.<br />
The trick is not to update the RPi, just use the latest image.</p>
<p dir="auto">Does anyone know if it is possible to connect the status LEDs to the RPi?</p>
]]></description><link>https://forum.mysensors.org/post/19527</link><guid isPermaLink="true">https://forum.mysensors.org/post/19527</guid><dc:creator><![CDATA[ericvdb]]></dc:creator><pubDate>Sat, 22 Aug 2015 10:09:16 GMT</pubDate></item></channel></rss>