Hello,
I just downloaded the new IDE for Windows which seems to have resolved the eeprom issues. However, when I upload a very simple code on the waspmote, it is not executed when the Smart Parking board is placed on the waspmote.
Without the board, the code runs fine and the serial monitor outputs the simple hello message. When the parking board is placed on the waspmote, the code does not seem to even enter the setup() function.
I am quoting the code below. Please note that I have followed the correct procedure for uploading the program (removed all modules), and turned the mote off when adding/removing modules (such as parking board, xbee, etc).
Quote:
void setup()
{
// Opening UART to show messages using 'Serial Monitor'
USB.begin();
SensorParking.loadReference();
USB.println("2");
SensorParking.setBoardMode(SENS_ON);
}
void loop()
{
// Blinking LEDs
Utils.blinkLEDs(1000);
// Printing a message, remember to open 'Serial Monitor' to be able to see this message
USB.println("Hello World, this is Waspmote!");
// A little delay
delay(2000);
}