Create IFTTT Recipe for Particle

Create IFTTT recipe for Particle

  1. Click NEW APPLET button
  2. Click + symbol after IF
  3. Type par and Select Particle
  4. Click New Event Published
  5. Type in Particle.Publish Event Name
  6. Type in Particle.Publish Event Contents String (If left blank then IFTTT will be triggered when all {{EventName}} are fired
  7. Select Particle Photon Device
  8. Click + symbol after THEN
  9. Select a Service to send Particle Event data to
  10. Type Name
  11. Click FINISH


Particle Code Example

 Particle.publish("eventname", "eventuate", PRIVATE);

delay(1000); //stops double posting in IFTTT

Complete and Continue