<?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>Simple BLE project</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/4623/simple-ble-project</link><description>Hi guys, 
 I have nRF51822 Evaluation Kit.
I am trying to make simple project for my senior design. 
 Here is the setup. 
 I need to control simple on/off switch from smart phone. (i.e. iPhone or Android)
I will be connecting few relays to my PCA10001</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 28 Nov 2014 21:05:20 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/4623/simple-ble-project" /><item><title>RE: Simple BLE project</title><link>https://devzone.nordicsemi.com/thread/16422?ContentTypeID=1</link><pubDate>Fri, 28 Nov 2014 21:05:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8b2ec0d0-260c-4f27-832a-44c5ba7c96a0</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;Sorry about that.  I hope the source code could be useful to you.  All the examples on the blog have a 1 to 1 correspondent iOS code.  It is easier to get a feel of it than just code on one side.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Simple BLE project</title><link>https://devzone.nordicsemi.com/thread/16425?ContentTypeID=1</link><pubDate>Fri, 28 Nov 2014 20:02:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9d2d9f82-dcde-41ca-8710-b28dfae76b3a</guid><dc:creator>VIKS</dc:creator><description>&lt;p&gt;Thanks I am looking into it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Simple BLE project</title><link>https://devzone.nordicsemi.com/thread/16421?ContentTypeID=1</link><pubDate>Fri, 28 Nov 2014 20:01:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:626d73e6-c277-452f-a855-53479d3b0e58</guid><dc:creator>VIKS</dc:creator><description>&lt;p&gt;I did not give u negative. I don&amp;#39;t have enough points to give downvote. But I guess someone else gave u downvote.
May be because they thought u r advertising ur blog. Not sure&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Simple BLE project</title><link>https://devzone.nordicsemi.com/thread/16420?ContentTypeID=1</link><pubDate>Fri, 28 Nov 2014 19:04:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:44dbd541-7823-4dc0-9821-0cf69ad1a3c3</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;May I ask why you voted negative on my answer ? I gave you on the blog site full source code example both iOS and nRF51822 that allow you to configure each of the 31 i/o as input or output and active it each of one them.  Could you tell me what is it that you don&amp;#39;t about it ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Simple BLE project</title><link>https://devzone.nordicsemi.com/thread/16424?ContentTypeID=1</link><pubDate>Fri, 28 Nov 2014 18:53:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:026ed4d0-f4c1-414a-8686-e38a464746cb</guid><dc:creator>cocoa</dc:creator><description>&lt;p&gt;All you need is here :  &lt;a href="https://github.com/NordicSemiconductor/nrf51-ble-app-lbs"&gt;a simple custom service to drive led and button&lt;/a&gt; at Nordic github.&lt;/p&gt;
&lt;p&gt;About iOS : google CBCentralManager.&lt;/p&gt;
&lt;p&gt;To test and deploy fast on iOS download: &lt;a href="https://itunes.apple.com/us/app/lightblue-bluetooth-low-energy/id557428110?mt=8"&gt;LightBlue on iTunes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;-c&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Simple BLE project</title><link>https://devzone.nordicsemi.com/thread/16423?ContentTypeID=1</link><pubDate>Thu, 27 Nov 2014 22:30:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7f6942c6-4d89-41d2-b61a-32034ae41d60</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;there is a good example with iOS code you can use on this blog site &lt;a href="http://embeddedsoftdev.blogspot.ca/p/ehal-nrf51.html"&gt;http://embeddedsoftdev.blogspot.ca/p/ehal-nrf51.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The Blinky_be example on this blog allows you to control all 30 i/o pin. The iOS App configure the pin direction (IN or OUT). The iOS App can turn On or Off each i/o pin are all 30 at once. It make use of 2 characteristics. One for configuration, the other for data.&lt;/p&gt;
&lt;p&gt;Other examples showing control of LED matrix multi-display where you can type a text on iOS and send it to the Matrix displays. This examples make use of long characteristic write where you can send more than 20 bytes of data.&lt;/p&gt;
&lt;p&gt;A UART examples with long write. UART data in/out using one characteristic. iOS App serving as dump terminal.&lt;/p&gt;
&lt;p&gt;All examples are updated with SDK6 and SD7 and all projects were created from scratch using Eclipse IDE based project.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>