My idea is to have an arduino board that will communicate with the browser.
- I want the arduino board to react (eg. blink led) when user is connected to a certain website.
- User inputs on the board ( eg. press button) will affect the browser (eg. close tab, switch tab).
I started learning and creating simple examples using chrome extensions tutorial. However, since I am not myself a skilled programmer, I'd like to know if it is possible to achieve those things aforementioned.
How I imagine it right now it will be:
- Chrome extension writes into a json. Arduino reads data from json -> blink led.
- Arduino writes values in json. Chrome extension can automatically see changes in the file and react accordingly -> close tab( so, without having a user re-installing each time the extension).
Are this scenarios possible? Which would be the easiest way to achieve this?