Good afternoon everyone. I am trying to take a data from a gyroscope and push that data to a database in Firebase. In my Boron code this is the output
Output data to dashboard
Particle.publish("X-Axis of Rotation :", String(xGyro));
delay(1000);
Particle.publish("Y-Axis of Rotation :", String(yGyro));
delay(1000);
Particle.publish("Z-Axis of Rotation :", String(zGyro));
delay(1000);
In my webhook I have the json as follows
"X-Axis of Rotation :": "{{{PARTICLE_EVENT_VALUE}}}",
"Y-Axis of Rotation :": "{{{PARTICLE_EVENT_VALUE}}}",
"Z-Axis of Rotation :": "{{{PARTICLE_EVENT_VALUE}}}",
"published_at": "{{{PARTICLE_PUBLISHED_AT}}}"
The data never gets pushed to the data base and when I hit the “Test” button i receive ""X-Axis of Rotation :":"test-event","Y-Axis of Rotation :":"test-event","Z-Axis of Rotation :":"test-event""published_at":"2019-10-08T22:49:53.095Z""
Any suggestions on what I am doing wrong? The event list updates every min in the particle console but does not push to firebase.