Hello everyone,
I just created a product by typing in
- Product Name
- Brief Description
- Particle Device Type - Photon(P0)
- Hardware Version - Not sure what to enter in here, I entered 1 as default
- Product Type - Consumer
This created a product. Now I clicked ADD DEVICES->Add One Device and entered my Device ID
Under my APPROVED DEVICES, I can see my device. The Firmware Version is none. Let’s add some firmware to it. I opened the particle IDE and typed in the following code in and downloaded the binary.
PRODUCT_ID(xxxx); //xxxx is my product ID as displayed on my window
PRODUCT_VERSION(1); //I am not sure what this is so I entered 1 here
int led = D7; // You’ll need to wire an LED to this one to see it blink.
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH); // Turn ON the LED pins
delay(300); // Wait for 1000mS = 1 second
digitalWrite(led, LOW); // Turn OFF the LED pins
delay(300); // Wait for 1 second in off mode
}
I clicked the firmware icon->UPLOAD PRODUCT FIRMWARE
Entered Version Number as 1
Gave it a tile and description and chose my .bin file
When I click Upload I get
Bummer! Your firmware could not be created. The platform id in the binary must match the product platform id
I am not sure where am I going wrong. Instead of a sarcastic bummer message, it would be nice to display the conflict. Like the id in the bin file is this and you have entered this!
Any ideas where am I going wrong? Thanks for your time.