tengo 14 sensores y thinspeak solo permite 8 campos por canal, que opciones tengo

2 visualizaciones (últimos 30 días)
como puedo juntar dos canales para tener mas campos, por ejemplo tengo 14 sensores

Respuestas (1)

Christopher Stapels
Christopher Stapels el 28 de En. de 2024
One way is to use two channels. If you want to display the data from both channels at once, you can create custom MATLAB visualizations and ebmed them in the channel you want to see them on. The visualizations can read data from channel B and display it on channel A, etc.
A less optimal solution, but still possbile, it to pack multiple values into a single field. There are up to 255 characters allowed in each field, so you can put multiple valeus with a seperator. Then you need to write code to deconstruct and plot the values since the ThingSpeak field plots wont work automatically. This code in MATLAB is no too complex, and you can use the AI chat assistant at the playground to help you write it.
An even more convuluded aproach (that I actually use) is to seperate the values in time. You can post the values sequentially (keeping the update rate limit in mind) and then seperate the measurements by time. I have 10 devices that control lights on my driveway, each one posts its battery state to the same channel every few hours, then I seperate them later in code.

Comunidades de usuarios

Más respuestas en  ThingSpeak Community

Categorías

Más información sobre Debugging and Analysis en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by