gmarino2048 / Real-Life-Rocket-League

0 stars 1 forks source link

Particle.subscribe not working #14

Closed gmarino2048 closed 6 years ago

gmarino2048 commented 6 years ago

class Echo { public: Echo () { Particle.subscribe("Echo", &Echo::handler, this); } void handler (const char *eventName, const char* data) { Particle.publish("Echo Received", data); } };

This code doesn't work, but I cannot figure out why it doesn't

gmarino2048 commented 6 years ago

Decided to do it the old fashioned way: via brute force