Questions tagged [particle.io]

Particle.io is an internet of Things company that offers cloud-connected devices and services. They sell and manufacture Arduino-like modules which connect to the Internet over Wi-Fi and Cellular.

Particle.io is an Internet of Things company that offers cloud-connected devices. They have a cloud service which helps you connect and build "from first prototype to massive scale." (particle.io website)

They sell Arduino-like devices which connect to the Internet through WiFi or Cellular Networks.

18 questions
3
votes
2 answers

Can the Alexa ask-cli be used to set account linking information?

I'm rewriting an Alexa skill that communicates with the Particle.io API. This time I'm using the ask-cli to manage the uploads. So my basic process so far has been: "ask new" to create a starter skill and lambda "ask deploy" to create the Alexa…
Ron Lisle
  • 1,164
  • 6
  • 11
3
votes
1 answer

C++ float to string conversion failing with stringstream

I am working on the particle.io Spark platform, currently stuck trying to print out a float as a string. I saw some solutions where you use a string stream to convert the float. My implementation is as follows below: #include void…
koverda
  • 99
  • 1
  • 8
2
votes
1 answer

Can't Flash Code to Particle Photon

I have a Particle Photon which I'm trying to setup. I've tried flashing code both from the web IDE, and locally and it always times out. The device is connecting as it can be seen in these pictures: The web IDE does not give me much information. It…
1
vote
1 answer

How to run a node-red flow client side?

I am trying to setup a webpage using particle.io's node-red service and would like to allow for multiple simultaneous users to customize their view without it affecting what is displayed to other users. My current setup is all anonymous users (no…
1
vote
1 answer

Trouble Understanding Error Related to Promises and Scope

I am working on a little web front end for a particle photon I have configured as a learning exercise for js. I am having an error and I can't figure out why. Earlier in the code I use the particle script to login…
1
vote
0 answers

cannot find module 'google-module'

I'm excited to get started with the Particle Electron logging GPS coordinates and storing them up in the Google Cloud Platform. I have all the integrations connected using this tutorial,…
0
votes
0 answers

Particle.io waitFor() function similar to that of system

I am using Particle.io firmware version 2.1.0, and I am attempting to make a function as a member of a class that will take one parameter, int waitForDuration and will loop until either the public member of the class has changed to value true or the…
Ozzie
  • 139
  • 1
  • 3
  • 11
0
votes
1 answer

How to read data from websites on Particle

I am working on a project with a Particle device (as in particle.io - its tough searching for this stuff given that it has such an ambiguous name). I've been doing the tutorials, but I haven't been able to find anything on accessing an HTTPS website…
user5066158
0
votes
1 answer

why do I get two events from particle.publish?

I am using code like this on a particle electron to report pulse counts from a flow meter on my kegerator to the particle cloud: void meterInterrupt(void) { detachInterrupt(pin); ticks++; cloudPending = 1; attachInterrupt(pin,…
barnard
  • 71
  • 5
0
votes
1 answer

LIS3DH temperature acquisition

I'm trying to get temperature from LIS3DH sensor (accelerometer with integrated temperature sensor) I'm using Particle electron board that contain that sensor. The datasheet provide too few information set TEMP_EN and ADC_EN from TEMP_CFG_REG…
Nathanael
  • 77
  • 4
0
votes
1 answer

How to connect particle.io webhook to firestore database?

I'm using particle.io for an application and I have the webhook working fine to the Realtime database using the database secret. I'm making some updates and I want to start using the firestore database but the database secret does not work, I keep…
Ennio
  • 1,147
  • 2
  • 17
  • 34
0
votes
1 answer

Receiving empty json messages from edge device

I'm sending messages from a particle photon micro controller to a Azure IoT Hub. I monitor the outgoing messages from the particle portal and they seem to be just fine. Below is a recent sample: { "name": "*****", "data": "{\"eventSentUtcTime\":…
Durrahan
  • 25
  • 4
0
votes
1 answer

Can Boost Statechart library be used with the particle photon embedded system

So I have a particle photon embedded board. And I have the local build system set up on a Windows platform, using mingw, per: https://docs.particle.io/faq/particle-tools/local-build/photon/. Lastly, I would really like to use the statechart library…
bitcyber
  • 131
  • 3
  • 11
0
votes
1 answer

Particle.io Electron firmware "Error writing firmware...Incorrect platform id"

When flashing an updated application to a new Electron device running 0.6 firmware, I get the following error: Error writing firmware...Incorrect platform id (expected 10, parsed 0), use --force to override I can flash an old application just fine,…
user3076252
  • 1,919
  • 13
  • 13
0
votes
2 answers

Particle.io flasher not seeing Electron in DFU mode

This is probably a USB drivers problem: Particle.io Electron board is in DFU mode (shows blinking yellow LED) USB connection to Win7 particle tool does not see Electron, even after unplugging and re-plugging in the device's USB cable. Reports the…
user3076252
  • 1,919
  • 13
  • 13
1
2