I’m also working to integrate Pulse into HASS. Although I’m able to get curl responses with my api key and device id, the code for HASS is still giving “Unknown” status for sensors.
Would you post the entire YAML code you are using?
I’m also working to integrate Pulse into HASS. Although I’m able to get curl responses with my api key and device id, the code for HASS is still giving “Unknown” status for sensors.
Would you post the entire YAML code you are using?
@puckett
in your config.yaml put this line in-
sensor: !include sensor.yaml
if you dont already have a sensor.yaml file, create one and then add-
- platform: rest
resource: https://api.pulsegrow.com/devices/yourdeviceID/recent-data
method: GET
value_template: '{{ value_json["vpd"] }}'
name: "Pulse Grow"
scan_interval: 20
headers:
x-api-key: yourAPIkey
Developer tools>check config>restart
That worked! I think my issue was somehow formatting related since I was using a sensor directory for my sensors.
Hi, is the API service working? Since 12 hours ago I’m having a hard time getting data through the API, the server replies “{ Message = Unable to resolve service for type ‘PulseCore.CommonOptions.ElectricImpOptions’ while trying to activate ‘PulseCore.Business.Services.DeviceService’., StatusCode = 500 }%”.
@Toma_Chan Hi there! Sorry for the belated reply.
Just incase - the public api has been working since Monday. We experienced some downtime during the weekend.
Hi, here’s how to get all sensors data with just one API call.
Please also check the notes below.
rest:
- resource: https://api.pulsegrow.com/devices/{{YOUR-DEVICE-ID}}/recent-data
headers:
x-api-key: {{YOUR-API-KEY}}
sensor:
- unique_id: pulsepro_vpd
name: "PulsePro VPD"
icon: mdi:cloud-refresh
unit_of_measurement: 'kPa'
value_template: '{{ value_json["vpd"] | round(2) }}'
- unique_id: pulsepro_temperature
name: "PulsePro Temperature"
device_class: temperature
unit_of_measurement: '°C'
value_template: '{{ value_json["temperatureC"] | round(2) }}'
- unique_id: pulsepro_humidity
name: "PulsePro Humidity"
device_class: humidity
unit_of_measurement: '%'
value_template: '{{ value_json["humidityRh"] | round(2) }}'
- unique_id: pulsepro_light
name: "PulsePro Light"
icon: mdi:wall-sconce-flat
unit_of_measurement: '%'
value_template: '{{ value_json["lightLux"] | round(2) }}'
- unique_id: pulsepro_pressure
name: "PulsePro Pressure"
device_class: pressure
unit_of_measurement: 'hPa'
value_template: '{{ (value_json["airPressure"] / 100) | round(1) }}'
- unique_id: pulsepro_co2
name: "PulsePro CO2"
device_class: carbon_dioxide
unit_of_measurement: 'ppm'
value_template: '{{ value_json["co2"] }}'
- unique_id: pulsepro_dew_point
name: "PulsePro Dew Point"
icon: mdi:thermometer-water
unit_of_measurement: '°C'
value_template: '{{ value_json["dpC"] }}'
- unique_id: pulsepro_signal_strength
name: "PulsePro Signal Strength"
device_class: signal_strength
unit_of_measurement: 'dB'
value_template: '{{ value_json["signalStrength"] }}'
binary_sensor:
- unique_id: pulsepro_pluggedin
name: "PulsePro Plugged In"
icon: mdi:power-plug
value_template: '{{ value_json["pluggedIn"] }}'
Don’t forget to replace {{YOUR-DEVICE-ID}} and {{YOUR-API-KEY}} with actual values.
A few notes:
Hobbyist users can use up to 4800 datapoints daily, Enthusiasts and Professionals 24000 and 120000, respectively
20 seconds scan interval = 4320 API calls per day (ok with Hobbyist tier)
10 seconds scan interval (or 20 seconds scan interval for 2 devices) = 8640 calls per day (Enthusiasts needed)
…and so on. Just keep in mind that 1 day = 86400 seconds, and the API datapoints limits.
I copied this exactly into my configuration.yaml
I added my api key and device ID but when I add a sensor card on my dashboard it doesn’t display any values it just says “Unkown” . I created a sensor.yaml file and added this to test if it worked
Mmh can you try creating a rest.yaml file, copy-paste my code starting from the 2nd line (- resource:
).
Then add this line to configuration.yaml:
rest: !include rest.yaml
Ok, I did that and the same thing happens. The card doesn’t display any values just “Unkown”
Ok, sorry, i don’t know what could be wrong. Do you see any error message in your logs?
Also, do you have a Pulse Pro or a Pulse One?
I got it working. Thanks
My API access quit working this morning without any changes to configuration. The Pulse device still shows data but even logging into the API area of the website gives:
" Application Error
If you are the application administrator, you can access the diagnostic resources."
Anyone know what’s going on?
Hey! This might be an issue with some of our recent updates related to the API. I’ve given the engineering team a heads up and they’ll be looking into and getting this resolved ASAP!
Appreciate the heads up. Apologies for any inconvenience!
Thank you for the update!
Hello, the public API is back online now. The main app was not affected.
I’m sorry for the troubles and unexpected downtime.
I noticed there have been a few server downtime events with this API…
with that said, how safe are we to use this for growroom automations?
Obviously it would be bad to rely on this for environment automations if it might be going down from time to time… Just a thought I had
Also is there anyone experienced here who could help me troubleshoot and get this setup better?
I have 2 devices and I’m currently getting one sensor value from each device that I’m using for automations, and I even managed to pull multiple sensor values from each device (but I think I they were using mltiple API calls), but I cannot for the life of me figure out how to get multiple sensor values from each device using only 1 API call per device. I tried so many tweaks to the yaml and tried using AI to troubleshoot, but no dice.
Any help apreciated
Hi Oli, can you please provide some more info on the downtime events?
We can boast an uptime statistic of 99.9% and strive to ensure reliability.
Very small bursts of downtime can happen during app update, but other than that - incidents are uncommon. Not every month at least.
In any case, i think any automation should trigger from the latest reading.
In the rare occurrence of downtime, an automation should wait for new data and trigger after it comes in.
So your biggest risk would be a mildly late automation.
We currently don’t have an endpoint that provides data from multiple devices.
I would suggest joining data from multiple sensors via some sort of script.
However, our does do something like this in the Zones section.
Zones are not currently included in our public api as there hasn’t been any demand so far.
We can add that in though. later on
Hey. So I was just going by the few comments earlier in this thread about downtime. It seems like just a few isolated incidents, but just wanted to check if it was something that was being prioritized… which it sounds like it is. Thanks!