IMU shield to Photon--but no output?-using wifi?

Hello!

I have got my photon hooked up to an IMU shield and looking to print out accelerometer data.

I have tried using the code from the example here:
https://learn.sparkfun.com/tutorials/photon-imu-shield-hookup-guide?_ga=1.222465307.1405973549.1445461057

I added the library and clicked flash, it said it worked and the photon blinked magenta too! Then it just said ready…

not sure where to go from there as there was no actual output?!

Any help is much appreciated! thank you :smile:

You need to check the serial output, with the Photon connected to your computer via USB cable. With particle-cli, you can do: particle serial monitor. Or you can use a regular terminal program set to 115200 baud.

1 Like

Wow!!! That worked!!

Thank you so much!!

Any ideas about how to do using wifi, so I wouldn’t need to have the device actually plugged in?

Try checking the docs for Particle.variable() and/or Particle.publish(). TCP/IP or UDP are also possible. Then there are webhooks, and direct http requests as well.
Should be plenty of choice, just depends on what you want to do with it and how comfortable you are with the coding.