Wednesday, May 29, 2013

Week 7 Progress

The team has continued work on the programming of the device. The team is still working on learning the ins and outs of the Arduino IDE language which appears to be a combination of C, C++, and some other unique syntax. In addition, the bluetooth shield arrived and is being configured. Unfortuneately, trying to compile the test code for the shield results in the following error:

In file included from Slave.pde:31:
/Users/ravishah/Documents/Arduino/libraries/NewSoftSerial/NewSoftSerial.h:71: error: conflicting return type specified for 'virtual void NewSoftSerial::write(uint8_t)'
/Applications/Arduino.app/Contents/Resources/Java/hardware/arduino/cores/arduino/Print.h:48: error:   overriding 'virtual size_t Print::write(uint8_t)'

The team is working on doing some research to figure out the cause of the error. It appears that it may be due to some changes in the libraries that Arduino uses. 

1 comment:

  1. changing the Master and Slave sketches:
    #include NewSoftSerial.h to #include SoftwareSerial.h
    and change
    NewSoftSerial blueToothSerial(RxD,TxD); to SoftwareSerial blueToothSerial(RxD,TxD);

    ReplyDelete