
Welcome to BeUno® developer portal!
Sign up Documentation
With our SDK you can turn your ideas into real projects
Our authentication, data storage and analysis platform
The first body-to-cloud communication using our cloud-based solution.
We provide the latest technology with the purpose of making our clients break through any industry.
Our SDK allows developers creating their own applications to take advantage of our devices and cloud platform potential.
Native Android Java library.

NuGet package for Android and iOS.
Read BeUno devices with a few lines of code!
public async void OnTagConnected(object sender, IDeviceTag tag)
{
TemperatureResult result = await TemperatureTool.GetTemp();
if(result.Error == null)
double temperature = result.TemperatureValue;
else
System.Diagnostics.Debug.WriteLine(result.Error.ErrorMessage);
}
private final BeUnoCoreListener<DeviceTag> tagConnectedListener = tag -> {
TemperatureResult temp = TemperatureTool.getTemp();
BeUnoCoreError error = temp.getError();
if (error != null)
System.out.println(error.getErrorMessage());
else
double temperature = result.getTemperatureValue();
};
Powered by Dsruptive.