<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Basic Arduino setup with nRF8001 Development Kit</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/1773/basic-arduino-setup-with-nrf8001-development-kit</link><description>If I&amp;#39;ve missed some documentation on the use of Nordic Semiconductor&amp;#39;s nRF8001/nRF24L01+ Adapter for Arduino, I apologize but I couldn&amp;#39;t find any. 
 Steps I&amp;#39;ve taken: 
 
 Attached the &amp;#39;Adapter for Arduino&amp;#39; to a working Arduino UNO (actually tried on</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 04 Mar 2014 16:28:45 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/1773/basic-arduino-setup-with-nrf8001-development-kit" /><item><title>RE: Basic Arduino setup with nRF8001 Development Kit</title><link>https://devzone.nordicsemi.com/thread/7763?ContentTypeID=1</link><pubDate>Tue, 04 Mar 2014 16:28:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c796ed12-636b-479d-9ffa-88e02fee26d4</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;I&amp;#39;d be happy if you could accept the answer that you found useful to clear up this question! :-)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Basic Arduino setup with nRF8001 Development Kit</title><link>https://devzone.nordicsemi.com/thread/7760?ContentTypeID=1</link><pubDate>Tue, 04 Mar 2014 10:03:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8933e95d-72e9-484f-bc35-4437a96267bd</guid><dc:creator>David Edwin</dc:creator><description>&lt;p&gt;My apologies on this issue.
We will be fixing the github release so that it will support the Nordic boards better and work with redbearlab so hopefully we can have a common pin configuration to make it easier for users.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Basic Arduino setup with nRF8001 Development Kit</title><link>https://devzone.nordicsemi.com/thread/7762?ContentTypeID=1</link><pubDate>Mon, 03 Mar 2014 20:12:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1b7ad61f-a5a6-4c7a-b30b-99fccf1f1e55</guid><dc:creator>Will Rust</dc:creator><description>&lt;p&gt;There we go!&lt;/p&gt;
&lt;p&gt;I had been using &lt;a href="http://github.com/NordicSemiconductor/ble-sdk-arduino"&gt;github.com/.../ble-sdk-arduino&lt;/a&gt; and &lt;u&gt;assumed&lt;/u&gt; that because this came from one of Nordic Semi&amp;#39;s own repos that it would default to their own hardware and not RedBear&amp;#39;s.  I should have looked at the code before asking.&lt;/p&gt;
&lt;p&gt;Thank you very much for your help.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Basic Arduino setup with nRF8001 Development Kit</title><link>https://devzone.nordicsemi.com/thread/7761?ContentTypeID=1</link><pubDate>Mon, 03 Mar 2014 10:50:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e16064e8-fecd-4413-8735-c8dcd5856322</guid><dc:creator>David Edwin</dc:creator><description>&lt;p&gt;You may want to import the latest Arduino code delivered at
&lt;a href="http://github.com/NordicSemiconductor/ble-sdk-arduino"&gt;github.com/.../ble-sdk-arduino&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Make sure that you read the readme file in the top level, this will give you the information on the pin connections required for the Nordic Arduino shield.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Open the Serial Monitor window using Tools -&amp;gt; Serial Monitor in the Arduino IDE to receive error and status messages and to send data from the PC to the phone.&lt;/li&gt;
&lt;li&gt;Set the line ending option in Serial Monitor to &amp;quot;New Line&amp;quot;&lt;/li&gt;
&lt;li&gt;Set the baud rate in the Serial Monitor to &amp;quot;115200 baud&amp;quot;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The pin settings for the Nordic board should be:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;

/*    Tell the ACI library, the MCU to nRF8001 pin connections.    
The Active pin is optional and can be marked UNUSED    */              

/* See board.h for details REDBEARLAB_SHIELD_V1_1 or BOARD_DEFAULT
*/
aci_state.aci_pins.board_name = BOARD_DEFAULT;  

/* SS for Nordic board, 9 for REDBEARLAB_SHIELD_V1_1  
*/
aci_state.aci_pins.reqn_pin   = SS; 

/* 3 for Nordic board, 8 for REDBEARLAB_SHIELD_V1_1    
*/
aci_state.aci_pins.rdyn_pin   = 3; 

aci_state.aci_pins.mosi_pin   = MOSI;    
aci_state.aci_pins.miso_pin   = MISO;    
aci_state.aci_pins.sck_pin    = SCK;        

aci_state.aci_pins.spi_clock_divider          = SPI_CLOCK_DIV8;

/* 4 for Nordic board, UNUSED for REDBEARLAB_SHIELD_V1_1
*/
aci_state.aci_pins.reset_pin     = 4;

aci_state.aci_pins.active_pin                  = UNUSED;   
aci_state.aci_pins.optional_chip_sel_pin = UNUSED;

&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>