Hi there beautiful people,
I have done some small projects with an arduino uno before but now I wanted to make an arduino project with johnny five over wifi..
I bought the mkr 1010 because I thought it would be the best board for wifi applications I could pick right now.. But I need to get johnny five communication with the mkr 1010 but all I find are guides of people useing the MKR 1000 and firmata..
I have connected to my mkr 1010 using the WiFiNINA lib but I am unsure how to link it with the johnny five lib. Is it unsupported or is there a way to get this working? (I don't think we can use the Firmata on our MKR 1010? )
This project is basically the setup I would like to get working but with an mkr 1010
https://create.arduino.cc/projecthub/ryanjgill2/plant-monitoring-system-88ed2b?ref=tag&ref_id=garden&offset=3
If you would look in the source code you see code like:
// use the socketClient instead of a serial port for transport
var boardIo = new firmata.Board(socketClient)
var board = new five.Board({io: boardIo, repl: true})
Is there any way to connect to the mkr1010 like this?
In case communication with johnny five is impossible, What would be the best way for me to send data ( data = sensordata read by the arduino code uploaded from ide to avoid johnny five?) from the arduino to a node web server
Any help would be greatly appreciated as I have been struggling to find any answers and unable to figure it out myself..
Thanks for reading.