Arduino Yun - Uploading Sensor Data to Mysql on External Server -


Can Arduino Yun connect to MYSQL on external server and store sensor data about it. If so, then?

Technically you can.

  1. You can write or port ARDOn to an MSSL driver, but small amounts of memory and process power will not be able to do this.

  2. With Yun, you can also install some libraries and programs, an app that is running on Linux side, which takes the data from the serial to its own database goes.

Another option:

  1. Use intermediate app to save incoming data to your database Interface is a typical HTTP API or The publication / subscription can be done through the broker.

For simplicity I recommend going for option three.


Comments

Popular posts from this blog

java - Can't add JTree to JPanel of a JInternalFrame -

javascript - data.match(var) not working it seems -

javascript - How can I pause a jQuery .each() loop, while waiting for user input? -