Flows - The core of MobiusFlow

Welcome!

This community is for professionals and enthusiasts of our products and services.
Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.

2

How do I create dynamic data objects in MobiusFlow for IoT integration?

Avatar
Neil Pye

I'm looking reformat incoming data for temperature and humidity for example

Avatar
Discard
1 Answer
0
Avatar
Ben Hargreaves
Best Answer

MobiusFlow supports the creation of dynamic objects that can process and reformat incoming data. For instance:

  • Use the platform's scripting capabilities to transform IoT sensor data into JSON objects tailored to specific needs.
  • Example: Convert a sensor payload like {"Temperature": 22.5, "Humidity": 60} into a more structured object such as:
{
"environment": {
"temp": 22.5,
"humidity": 60
}
}

This is achieved through MobiusFlow’s flexible object-handling nodes.

Such data transformations facilitate seamless integration with external platforms like Azure or AWS by ensuring data is in the expected format.



Avatar
Discard