<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic (No subject) in Intel® ISA Extensions</title>
    <link>https://community.intel.com/t5/Intel-ISA-Extensions/How-to-build-serial-communication-with-Intel-Galileo/m-p/1098839#M5977</link>
    <description>&lt;P&gt;&lt;IMG alt="" src="http://4.bp.blogspot.com/-RlMCPRSF7X4/VZlY1eg5wOI/AAAAAAAAN3k/WA7nVrYbzUI/s1600/DueHC06.png" /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 25 Jan 2016 10:36:05 GMT</pubDate>
    <dc:creator>Derp_K_</dc:creator>
    <dc:date>2016-01-25T10:36:05Z</dc:date>
    <item>
      <title>How to build serial communication with Intel Galileo ?</title>
      <link>https://community.intel.com/t5/Intel-ISA-Extensions/How-to-build-serial-communication-with-Intel-Galileo/m-p/1098836#M5974</link>
      <description>&lt;P&gt;char number;&lt;BR /&gt;void setup()&lt;BR /&gt;{&lt;BR /&gt;Serial.begin(9600);&lt;BR /&gt;pinMode(13,OUTPUT);&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;}&lt;BR /&gt;void loop()&lt;BR /&gt;{&lt;BR /&gt;if(Serial.available())&lt;BR /&gt;{&lt;BR /&gt;number = Serial.read();&lt;BR /&gt;Serial.println(number);&lt;BR /&gt;if(number=='A')&lt;BR /&gt;{digitalWrite(13,HIGH);}&lt;BR /&gt;if(number=='B')&lt;BR /&gt;{digitalWrite(13,LOW);}&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to use bluetooth (control by mobile phone) to control the pin13 LED.&lt;/P&gt;&lt;P&gt;I use HC-06 bluetooth model to do that , the RX of HC-06 is connect to TX of Galileo and TX of HC-06 is connect to RX of Galileo.&lt;/P&gt;&lt;P&gt;However it fail&amp;nbsp;&amp;nbsp; , I dont know the reason but it sucessful on ARDUINO , I want to find some help&lt;/P&gt;&lt;P&gt;It is successful on laptop to control the LED13 , but i could not use HC-06 to control it&amp;nbsp; :(&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2016 02:02:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-ISA-Extensions/How-to-build-serial-communication-with-Intel-Galileo/m-p/1098836#M5974</guid>
      <dc:creator>PENGSHEN_Y_</dc:creator>
      <dc:date>2016-01-22T02:02:37Z</dc:date>
    </item>
    <item>
      <title>I need some help please QAQ</title>
      <link>https://community.intel.com/t5/Intel-ISA-Extensions/How-to-build-serial-communication-with-Intel-Galileo/m-p/1098837#M5975</link>
      <description>&lt;P&gt;I need some help please QAQ&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2016 15:13:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-ISA-Extensions/How-to-build-serial-communication-with-Intel-Galileo/m-p/1098837#M5975</guid>
      <dc:creator>PENGSHEN_Y_</dc:creator>
      <dc:date>2016-01-24T15:13:44Z</dc:date>
    </item>
    <item>
      <title>Can you check this i used it</title>
      <link>https://community.intel.com/t5/Intel-ISA-Extensions/How-to-build-serial-communication-with-Intel-Galileo/m-p/1098838#M5976</link>
      <description>&lt;P&gt;Can you check this i used it in my manual robot&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:plain;"&gt;#include &amp;lt;SoftwareSerial.h&amp;gt;

SoftwareSerial BT(12, 13);     // RX, TX , pins could be edited


int BluetoothData = 0;             

void setup()

          {

                 BT.begin(9600); 
    
           }

void loop() {
    
      if ( BT.available() )
     {
        BluetoothData = BT.read();
        
            switch (BluetoothData)      
               {
                case 'A' :                         
                            // Your code here
                break;
                
    
                case 'B' :         
                            // Your code here
                break;
                
 
                case 'C' :                        
                            // Your code here
                break;
 
                case 'D' :
                            // Your code here
                break;

               
           default :
                            // Your code here
               
 
             }
             
             delay (10); // For next data
 }

}&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2016 18:55:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-ISA-Extensions/How-to-build-serial-communication-with-Intel-Galileo/m-p/1098838#M5976</guid>
      <dc:creator>Derp_K_</dc:creator>
      <dc:date>2016-01-24T18:55:48Z</dc:date>
    </item>
    <item>
      <title>(No subject)</title>
      <link>https://community.intel.com/t5/Intel-ISA-Extensions/How-to-build-serial-communication-with-Intel-Galileo/m-p/1098839#M5977</link>
      <description>&lt;P&gt;&lt;IMG alt="" src="http://4.bp.blogspot.com/-RlMCPRSF7X4/VZlY1eg5wOI/AAAAAAAAN3k/WA7nVrYbzUI/s1600/DueHC06.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 10:36:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-ISA-Extensions/How-to-build-serial-communication-with-Intel-Galileo/m-p/1098839#M5977</guid>
      <dc:creator>Derp_K_</dc:creator>
      <dc:date>2016-01-25T10:36:05Z</dc:date>
    </item>
    <item>
      <title>Reply #3 :</title>
      <link>https://community.intel.com/t5/Intel-ISA-Extensions/How-to-build-serial-communication-with-Intel-Galileo/m-p/1098840#M5978</link>
      <description>&lt;P&gt;Reply #3 :&lt;/P&gt;

&lt;P&gt;It successfuly work on Arudino and serial output at Intel Galileo but it not work at HC-06&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Reply #4:&lt;/P&gt;

&lt;P&gt;Thanks for your help , but my board is not Arudino&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 23:11:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-ISA-Extensions/How-to-build-serial-communication-with-Intel-Galileo/m-p/1098840#M5978</guid>
      <dc:creator>PENGSHEN_Y_</dc:creator>
      <dc:date>2016-01-25T23:11:48Z</dc:date>
    </item>
  </channel>
</rss>

