I am pretty new to all of this so apologies if this is a dumb question.
I followed Jeremy Morgan's Easy IOT w Adafrut IO and Raspberry Pi Guide https://www.jeremymorgan.com/tutorials/raspberry-pi/how-to-iot-adafruit-raspberrypi/. My hope is to have this setup in fridge that I will use as a curing chamber.
I finally got everything up and running but after about a minute of the script running I get the following error
- Code: Select all | TOGGLE FULL SIZE
Traceback (most recent call last):
File "sensor.py", line 20, in <module>
aio.send_data(humfeed.key, humidity)
File "/home/pi/.local/lib/python3.7/site-packages/Adafruit_IO/client.py", line 154, in send_data
return self.create_data(feed, payload)
File "/home/pi/.local/lib/python3.7/site-packages/Adafruit_IO/client.py", line 254, in create_data
return Data.from_dict(self._post(path, data._asdict()))
File "/home/pi/.local/lib/python3.7/site-packages/Adafruit_IO/client.py", line 127, in _post
self._handle_error(response)
File "/home/pi/.local/lib/python3.7/site-packages/Adafruit_IO/client.py", line 102, in _handle_error
raise ThrottlingError()
Adafruit_IO.errors.ThrottlingError: Exceeded the limit of Adafruit IO requests in a short period of time. Please reduce the rate of requests and try again later.
I have the AM2302 taking samples every 30 seconds so I am not sure why it is sending so much data so quickly to the IO and throttling.
Any help would be appreciated.