Sphere Partners

Building Desktop Apps with Electron for Xiaomi

Date Published

Reading time

3 min
Building Desktop Apps with Electron for Xiaomi
In this article

Smart apps designed to make our lives easier are becoming increasing popular. These range from fitness trackers to lightbulb controls.  When designing these apps, you may find you need to improve the user experience.  Or you need to access the raw data, but setting up a full stack project would be overkill for this purpose. That is when Electron comes into play.

Electron is a new way to develop modern desktop apps with all the power of Node.js, HTML, and CSS.  You can easily complete a functional app in a short time frame, which could solve 80% of your day-to-day needs.

In this example, we are going to explore the Electron universe by creating a simple app that will give us access to the IoT world.  Integrating scales from Xiaomi, we will build a “Smart Scale” app that will show the user’s weight in real time. With Electron, the data will be collected and presented in a nice, clean format.

STEP 1:  SETUP

First, we need to make sure the setup is done properly. Many templates are available for this step, but we are going to simplify this process by starting with a basic setup:

bash
# Clone this repository
git clone https://github.com/electron/electron-quick-start
# Go into the repository
cd electron-quick-start
# Install dependencies
npm install
# Run the app
npm start

Once you have completed this step, you will have something like this:

bash
├── README.md
├── index.html
├── main.js
├── node_modules
├── package.json
└── renderer.js

* index.html  is the app’s main view.

* main.js is the app’s entry point.

* renderer.js is where all the Node.js staff is available.

STEP 2:  DIVIDE THE  PROCESS INTO 3 PARTS

In order to build our app, we need to split it into 3 parts:

  • GUI and UX
  • Data service
  • Integration of data & UI

Our Smart Scale is built on BLE (Bluetooth Low Energy), which is a very nice protocol. In NPM land, the https://github.com/sandeepmistry/noble project provides us low-level API for basic Bluetooth interaction.

But we can go even further. A quick search on github will give us a ready-to-use

NPM package for our Smart Scale (https://github.com/perillamint/node-xiaomi-scale):

bash
% npm i node-xiaomi-scale --save

If you have problems building these native extensions, you can check this discussion:

(https://github.com/opensprints/opensprints-electron/issues/5).

STEP 3:  ENTER DATA/CODE

Now we are ready get our first real data into the app.

Our UI will be pretty simple:

text
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Smart Scale App</title>
</head>
<body>
<h1>Smart Scale App</h1>
<div id="weight">No Data</div>
</body>
<script>
require('./renderer.js')
</script>
</html>

We can get sample code from the node-xiaomi-scale package and put it, as well as our data layer, into the renderer.js file, and we are good to go:

javascript
const MiScale = require('node-xiaomi-scale');
let miscale = new MiScale();
miscale.startScanning();
miscale.on('data', function (scale) {
console.log(scale);
});

STEP 4:  START YOUR APP

Here’s what we need to start our app:

bash
$ npm start

STEP 5:  MAKE YOUR APP COMPATIBLE WITH ALL PLATFORMS

Now we just need to polish our app and build it for all available platforms.

To get a nice, clean UI, we are going to use https://ignitersworld.com/lab/radialIndicator.html:

bash
$ wget https://raw.githubusercontent.com/s-yadav/radialIndicator/master/radialIndicator.min.js

Here is our UI:

css
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Smart Scale App</title>
<style>
#container {
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<div id="container">
<div id="weight"></div>
</div>
</body>
<script>
require('./renderer.js')
</script>
</html>

Here is our data layer:

typescript
const radialIndicator = require('./radialIndicator.min.js')
const MiScale = require('node-xiaomi-scale');
const miscale = new MiScale();
miscale.startScanning();
const radialObj = radialIndicator('#weight' , {
radius: 150,
minValue: 0,
fontWeight: 'normal',
roundCorner: true,
barWidth: 8,
maxValue: 250,
barColor: {
200: '#FF0000',
100: '#FFFF00',
80: '#0066FF',
50: '#33CC33',
},
format: function (value) {
return `${value.toFixed(2)} kg`;
},
});
miscale.on('data', function (scale) {
radialObj.animate(scale.weight)
console.log(scale);
});

STEP 6:  CREATE AN EXECUTABLE FILE

Now our app is just about ready. We need to start here:

Then we can further build on our app:

bash
$ npm i electron-builder --save-dev

We can also add some sections to our package.json:

json
{
...
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "smart.scale.app",
"mac": {
"category": "smart.scale.app.ble"
}
},
....
}

Now we can run our app:

bash
$ npm run dist

Electron is a great platform for building desktop apps in a matter of minutes. It allows you to jump right into development with minimal platform-specific knowledge.  You don’t have to be familiar with edge cases or various languages to set up a simple app that will work on MacOS, Windows, and Linux. You just need to have experience with JavaScript and CSS.  Plenty of tutorials and great starting materials are also available. So, if you are interested in Desktop App development, you can now get started.

This application can be found on github at

https://github.com/SphereSoftware/smart-scale-app

More to read

How to Choose an AI Software Development Company (And What to Watch Out For) — hero image
Consulting & Advisory,  Tech Executive Advisory,  Data & AI,  IT Strategy Consulting,  Software Development,  ChatGPT,  Trends

Not all AI software development companies are equal. Learn what separates firms that truly build with AI from those that just use the word. Includes real questions to ask and red flags to avoid.

Exploring the Integration of AI in Software Development: A Full-Stack Developer's Perspective
Software Development,  Data & AI,  ChatGPT

Dive into Sphere's full-stack developer journey with AI – from tackling code with GitHub Copilot to unleashing problem-solving insights with ChatGPT. Explore the potential of AI in software development projects: which tools are truly handy, how many hours can you save, and what's the next big thing? Pavel Korchak shares his insights.

We'd love to hear from you!

Please provide your contact details, and our team will get back to you promptly.