Jump to content
43oh

ansh

Members
  • Content Count

    12
  • Joined

  • Last visited

  1. These are my connection done on sensortag
  2. Hi, I am using pin 1.1 and pin 1.2 and have attached it to sensorTag 2 through DEVPACK slots given on it ,and yup it is SPPBLE server code
  3. Hi, I am trying to send data through UART from MSP430G2553 to sensorTag CC2650 and then through Bluetooth we are seeong value on BLESCANNER app we are using SPPBLE server program but we are not getting any data on the app .Can any one help me out as i am still stuck on it..
  4. Can you also tell me the hardware connection ?? I am still not able to get the output
  5. I am simply trying to send data through UART from MSP430G2553 to CC3200 and display the data on serial monitor ..
  6. Can you help me with the code ??
  7. @@cubeberg i have attached my sender code from MSP430G2553 and receiver code for CC3200 SENDER MSP430 :- #define LED RED_LED char ch; void setup() { Serial.begin(9600); // put your setup code here, to run once: } void loop() { Serial.write('c'); delay(1000); // put your main code here, to run repeatedly: } RECEIVER CC3200 :- #define LED RED_LED char c; void setup() { Serial.begin(9600); Serial1.begin(9600); pinMode(LED,OUTPUT); pinMode(GREEN_LED,INPUT); } void loop() { if(Serial.available()>0) { c=Serial.read(); Serial1.prin
  8. Yes,I am sending data using msp430 , the data is being sent but its not received by cc3200 , i think there is a problem of pin multiplexing ..
  9. i am trying to interface msp430 and cc3200 using UART .i am using the IDE energia ,basically i am reading analog sensor value through msp430g2553 and send it to cc3200 using UART can any one help me with code ??
  10. while m interfacing msp430 with cc3200 using i2c using energia i am not getting anything on serial monitor while the code is executing ...can anyone tell how to interface cc3200 with msp430
×
×
  • Create New...