New features on Notification dashboard
Added new features:
- Filter by day / month or time range
- Export to CSV and Excel
- Possibility to add a comment to every notification

Added new features:
We have added a support for new electricity consumption monitoring device from SmartImp. SENSECOM-OMD-E is reading the registers directly from electricity meter via optical sensor. The installation is super easy, you just attach device via magnet and press one button. More information about device is available here.
Support in IO Frog:
Added support for new CO2 sensor from IOTA
You can export of all devices from Group Manager, tab Devices:
We deployed several improvements recently:
You will find more options in selecting devices by platform expiration date:
We have deployed several major changes / features today:
This release required many deep changes in our system and even we tried to test it as much as possible, you may spot some issues. Please, do not hesitate to contact us in such case. We will do the best to fix them as soon as possible.
You can choose if you prefer CSV or XLSX format of exported data now.
With next release, we will clean up the message structure that also impacts the messages being forwarded to your servers. Currently, the array of keys includes:
The key’s attributes: unit, isCode, and _id were there historically since version v1 and are not needed anymore, so we want to remove them from the message to make the messages smaller and be more efficient. It does not make sense to send a unit of temperature with every temperature since it does not change and we keep it as a part of our config files. Same with isCode. These attributes were mainly used internally.
The new message will keep this structure:
{
keys: [
{ key: 'action', value: 'gas_periodic' },
{ key: 'gas_concentration', value: 1040 },
{ key: 'mode', value: 'gas' }
],
deviceId: 'A152',
type: 'data_bidir',
timestamp: 1637575251,
seqNumber: 2,
_id: '619b6a5bf83148c4cc3ea3b9'
}
So the only difference is the removal of key’s attributes: unit, isCode, _id.