hi there. I am trying to do a project from D Middlecamp but having a hard time… Maybe someone can guide me through the steps, because the explanation on Hackster.io is not clear to me (I am a beginner).
http://hackster.io/middleca/sending-sound-ov…
What I did:
1 Downloaded the two files of the project to ~/…/soundproject
2 Modified the files by changing the ipAddress in waveRecorder.js:
// Put your IP here!
var settings = {
ip: "192.168.0.54",
port: 3443
and in main.ino
// so we know where to connect, try:
// particle get MY_DEVICE_NAME ipAddress
Spark.variable("192.168.0.54", myIpAddress, STRING);
IPAddress myIp = WiFi.localIP();
sprintf(myIpAddress, "%d.%d.%d.%d", myIp[0], myIp[1], myIp[2], myIp[3]);
3 Uploaded the files to my Photon using the CLI (“particle flash abc23434absbs soundproject”)
…
and then I’m lost. Is it working? I have no idea? Where does test.wav get stored?
I hope someone can help me.
Thieme