Hello everyone,
I am currently working on a controller for my beer brewing machine and I want to extend its function.
I want to be able to enter a water amount and a pump will then start to pump water into a pot until the specified amount is reached.
For this I will be using a flowmeter which produces about 88 impulses per Liter. The Arduino has to read these impulses very fast but also be able to send a string with process data via a Bluetooth serial connection once every second.
Let´s assume I use attachInterrupt for this and the pump is turned on for about 10 minutes. The Arduino will constantly be jumping to the ISR for these 10 minutes. Will the Arduino still able to send the Bluetooth data once every second? If not, which alternative could I revert to?
I am still waiting on the flowmeter so I can not test this, but it would be great to gather some information beforehand.
Thanks in advance!
Mike