Introducing Auto Execution Loop in BleuIO

BleuIO, a leading Bluetooth Low Energy (BLE) USB dongle, continues to evolve with its latest firmware updates —version 2.7.8 for BleuIO and version 1.0.3 for BleuIO Pro. This new release builds upon the Auto Execution feature introduced in our previous firmware release by adding a powerful Auto Execution Loop, allowing users to automate repetitive tasks seamlessly. With this enhancement, developers can set up loops in the AUTOEXEC list, enabling continuous execution of commands without manual intervention.

What is Auto Execution Loop?

The Auto Execution feature allows users to store and run AT commands automatically upon startup, making BLE development faster and more efficient. With the new Auto Execution Loop, you can now create loops within the AUTOEXEC list, All auto-execute commands between the loop start and loop end will continue running indefinitely until manually stopped by clearing the auto-execute list using AT+CLRAUTOEXEC.

This feature is particularly useful for scenarios where continuous execution of BLE tasks is required, such as:

  • Beacon advertising with dynamic data updates
  • Changing BLE characteristics periodically
  • Automated device-to-device communication
  • Repeating sensor data transmission

How to Use the Auto Execution Loop

Setting up a loop in the AUTOEXEC list is simple and requires only a few steps:

  1. (Optional) Add any commands that should run once before the loop starts using AT+AUTOEXEC=*command*.
  2. Define the start of the loop using AT+AUTOEXECLOOP=START.
  3. Add the commands that should execute repeatedly with AT+AUTOEXEC=*command*.
  4. Mark the end of the loop using AT+AUTOEXECLOOP=END.
  5. Restart the BleuIO dongle to see the commands execute automatically on startup. Alternatively, plug it into any power source, like a power bank or USB adapter, and let it run autonomously.

To clear the AUTOEXEC list and stop an ongoing loop, simply use AT+CLRAUTOEXEC. This ensures that any active command sequence is halted.

Real-World Use Cases

1. Dynamic BLE Beacon

Start-up: Disables scan response message and starts advertising.

In loop: Sets the advertising name in advertising data to ‘BleuIO’, waits 10 seconds, sets advertising name to ‘CAT’, waits 10 seconds.

Test: Scan the dongle to see the name change every 10 seconds.

Commands:

AT+AUTOEXEC=AT+ADVRESP=00
AT+AUTOEXEC=AT+ADVSTART
AT+AUTOEXECLOOP=START
AT+AUTOEXEC=AT+ADVDATA=04:09:42:6C:65:75:49:4F  // Name: BleuIO
AT+AUTOEXEC=AT+WAIT=10
AT+AUTOEXEC=AT+ADVDATA=04:09:43:41:54  // Name: CAT
AT+AUTOEXEC=AT+WAIT=10
AT+AUTOEXECLOOP=END

2. BLE Peripheral with Notify Characteristic

Start-up: Creates a custom service with a characteristic with the notify property. Starts advertising.

In loop: Changes the characteristic value to ‘First Value’, waits 10 seconds, changes the value to ‘Second Value’, waits 10 seconds.

Test: Connect to the dongle and subscribe to the notification characteristic to see it toggle between the two values every 10 seconds.

Commands:

AT+AUTOEXEC=AT+CUSTOMSERVICE=0=UUID=72013640-2f23-49bb-8edd-6636969a2545
AT+AUTOEXEC=AT+CUSTOMSERVICE=1=UUID=72013641-2f23-49bb-8edd-6636969a2545
AT+AUTOEXEC=AT+CUSTOMSERVICE=1=PROP=RWN
AT+AUTOEXEC=AT+CUSTOMSERVICE=1=PERM=RW
AT+AUTOEXEC=AT+CUSTOMSERVICE=1=LEN=20
AT+AUTOEXEC=AT+CUSTOMSERVICE=1=VALUE=Value
AT+AUTOEXEC=AT+CUSTOMSERVICESTART
AT+AUTOEXEC=AT+ADVSTART
AT+AUTOEXECLOOP=START
AT+AUTOEXEC=AT+CUSTOMSERVICE=1=VALUE=First Value
AT+AUTOEXEC=AT+WAIT=10
AT+AUTOEXEC=AT+CUSTOMSERVICE=1=VALUE=Second Value
AT+AUTOEXEC=AT+WAIT=10
AT+AUTOEXECLOOP=END

3. Device-to-Device Communication

Start-up: Enables verbose mode.

In loop: Connects to another dongle, waits 10 seconds to ensure connection, sends an SPS message ‘HELLO’, waits 10 seconds before disconnecting, then waits 60 seconds.

Test: Set up a second dongle to advertise and run AT+GETMAC on it to obtain the MAC address. Use that address in the first dongle’s AUTOEXEC list when adding the AT+GAPCONNECT command. Monitor the terminal on the second dongle to see the first dongle connecting and sending ‘HELLO’ every minute.

Commands:

AT+AUTOEXEC=ATV1
AT+AUTOEXECLOOP=START
AT+AUTOEXEC=AT+GAPCONNECT=[0]*MAC_ADDRESS*
AT+AUTOEXEC=AT+WAIT=10
AT+AUTOEXEC=AT+SPSSEND=HELLO
AT+AUTOEXEC=AT+WAIT=10
AT+AUTOEXEC=AT+GAPDISCONNECT
AT+AUTOEXEC=AT+WAIT=60
AT+AUTOEXECLOOP=END

Why Auto Execution Loop Matters

The introduction of Auto Execution Loop in BleuIO v2.7.8 brings a new level of automation and efficiency to BLE development. With this feature, you can:

  • Reduce manual intervention by automating repetitive tasks
  • Increase reliability by ensuring commands execute consistently
  • Enable standalone BLE applications without needing a host device
  • Enhance development workflow by quickly testing different BLE behaviors

For developers building BLE applications, this feature opens up exciting possibilities, from autonomous sensor monitoring to seamless device interactions.

BleuIO’s Auto Execution Loop is a game-changer for BLE automation, making it easier than ever to set up continuous execution of commands. Whether you’re developing a smart beacon, a data-logging device, or a BLE-based automation system, this feature allows you to achieve more with less effort.

How to Upgrade:

To take advantage of these enhancements, make sure to update your BleuIO dongle to firmware version 2.7.8. You can find the firmware update and detailed instructions on the official BleuIO website. Click here to know more about firmware updates.

Share this post on :

New Firmware Release for BleuIO and BleuIO Pro: Enhanced Stability and Bug Fixes

We’re excited to announce the release of new firmware updates for our popular BleuIO and BleuIO Pro Bluetooth Low Energy USB dongles. These updates focus on improving the stability and performance of the devices while addressing some critical bugs reported by our users.

With these firmware releases, both BleuIO and BleuIO Pro are now better equipped to handle connection and scan operations, ensuring a smoother experience for developers building Bluetooth Low Energy (BLE) applications.

BleuIO Pro Firmware v1.0.2

The latest firmware for BleuIO Pro brings significant stability improvements and important bug fixes.

Key Updates

Stability Improvements:

  • Improved general stability for more consistent performance.
  • Enhanced stability during connection and scan operations.

Bug Fixes:

  • Resolved issues with incorrectly formatted verbose responses.
  • Fixed a bug where notifications/indications and GATT read operation responses would be cut off if they exceeded a certain length.
  • Fixed an issue where advertising would not automatically restart after a disconnection in verbose mode.

These improvements ensure a seamless experience for developers using BleuIO Pro in their BLE projects, whether for scanning devices, establishing connections, or maintaining robust advertising.


BleuIO Firmware v2.7.7

The new firmware for BleuIO focuses on improving the dongle’s overall stability and addressing bugs that could hinder performance.

Key Updates

Stability Improvements:

  • Enhanced general stability for day-to-day operations.
  • Improved connection and scan stability to ensure reliable performance during development and testing.

Bug Fixes:

  • Resolved issues with incorrectly formatted verbose responses.

These updates further solidify BleuIO as a reliable solution for developers working on BLE applications across various platforms.

How to Update Your Firmware

To take advantage of these updates, download the latest firmware from our firmware page. Ensure you select the correct firmware for your device—BleuIO or BleuIO Pro.

We’ve included a detailed step-by-step guide on the firmware page to make the update process simple and straightforward.

We encourage all users to update their firmware to the latest version to benefit from these stability improvements and bug fixes.

Share this post on :

BleuIO Python Library v1.6.0 Now Available

We are thrilled to announce the release of the latest update to the BleuIO Python library, version 1.6.0, bringing enhanced functionality and improved performance.

What’s New in BleuIO Python Library v1.6.0?

This update introduces several key features and improvements that will enhance your development experience:

Support for Latest Firmware Versions:

This update adds functions to support all commands introduced up to BleuIO firmware version 2.7.6 and BleuIO Pro firmware v1.0.1. This makes it easier for developers to use the full range of capabilities offered by the latest BleuIO firmware versions.

Enhanced Auto-Detection of COM Ports:

The auto-detect feature has been improved, ensuring better handling of available COM ports. When COM port is not specified , the system will now automatically detect and select the correct BleuIO COM port.

If a detected BleuIO COM port is already in use, the library will now search for the next available unused port. This continuous search for available ports makes it even easier for developers to get started with their projects without manually configuring COM ports.

Why Should You Update to Version 1.6.0?

This update makes it even simpler to integrate BleuIO into your BLE applications by improving ease of use and expanding support for the latest hardware capabilities. Whether you’re working with BleuIO or the BleuIO Pro model, version 1.6.0 will simplify your development process and ensure you’re utilizing the most up-to-date features.

How to Update

Updating to BleuIO Python library v1.6.0 is simple. Just follow these steps:

Install the latest version of the BleuIO Python library using pip:

pip install --upgrade bleuio

Start using the new features and commands in your BLE applications, and enjoy the improved auto-detection of COM ports.

For more details, check out the full documentation for the BleuIO Python library, and stay tuned for future updates!

Share this post on :

BleuIO Pro Firmware Update v1.0.1 – Exciting New Features, Improvements, and Bug Fixes

We are excited to announce the release of BleuIO Pro (SSD005) Firmware v1.0.1. This latest update brings several new features, enhancements, and bug fixes, ensuring a more stable and flexible experience for developers using the BleuIO Pro (SSD025) device. Below, we’ll explore the key highlights of this update and how it will improve your BLE application development.

Key Features in Firmware v1.0.1

1. Integration of Commands from BleuIO Versions 2.7.5 and 2.7.6

One of the most significant additions to BleuIO Pro firmware v1.0.1 is the inclusion of commands from BleuIO versions 2.7.5 and 2.7.6. This means BleuIO Pro is now fully up to date with the latest functionality available in the BleuIO series, while also maintaining exclusive commands that are specific to the Pro model.

2. Unique Organization ID (UOI) Support

With this update, BleuIO Pro introduces the ability to set a Unique Organization ID (UOI). This ID will be stored in the device’s flash memory, ensuring it persists even after power cycles. The Unique Organization ID can be displayed in the ATI command response if it is set, providing a simple and effective way for developers to manage and identify their devices across larger projects or multiple devices.

3. Extended ASCII Character Support

As part of our continued effort to enhance the functionality and versatility of BleuIO Pro, this firmware update includes support for Extended ASCII characters. This change allows for the handling of a broader range of characters, expanding the potential use cases for your BLE applications.

4. Device Address Type Command (ATSAT)

Firmware v1.0.1 introduces a new command, ATSAT, which allows developers to toggle the visibility of the device’s address type in the advertising data/scan responses. This feature applies to the AT+FINDSCANDATA and AT+SCANTARGET commands, as well as the AT+GAPSCAN command, which will always show the device address type. This added flexibility allows developers to easily track whether devices are using a Private or Public address type, making it easier to manage multiple devices in your BLE applications.

5. Enhanced Bonded Device Storage

One of the significant improvements in this update is the increased storage capacity for bonded devices. Previously, BleuIO Pro could store information for up to 8 bonded devices. With the v1.0.1 update, this number has been expanded to 16 devices. When the number of bonded devices exceeds 16, the firmware will automatically remove the first device in the list that is not currently connected, ensuring that bonding can continue seamlessly. This improvement ensures that BleuIO Pro can handle larger device networks, especially in scenarios with multiple connections.

New Commands in Firmware v1.0.1

Along with the new features, firmware v1.0.1 introduces several important commands:

  • AT+SETUOI – Set the Unique Organization ID, which will be stored in flash memory and persist through power cycles.
  • AT+CLRUOI – Clear any set Unique Organization ID.
  • ATSAT – Toggle the visibility of the device address type in scan results for AT+FINDSCANDATA and AT+SCANTARGET.

These commands offer greater control over device management, especially in environments with many BLE devices.

Bug Fixes in v1.0.1

Firmware updates aren’t just about adding new features – they also address known issues to improve the overall stability and performance of the device. In v1.0.1, we’ve resolved several bugs that impacted the performance of BleuIO Pro:

  • Device Reset During Scanning: A bug has been fixed where BleuIO Pro would reset when scanning and connecting to two or more devices, especially during a disconnection event.
  • Command Handling Improvements: Several fixes have been implemented for commands that require parameters. Previously, some commands would cause BleuIO Pro to reset if parameters were not provided, especially immediately after boot. This issue has now been resolved.
  • Error Handling for String Parameters: We’ve fixed a bug that caused errors when certain commands with string parameters, such as AT+DEVICENAME, AT+SCANPARAM=NAME, and AT+SETUOI, included an equal sign (=) within the string.
  • AT+AUTOEXEC Command Fix: The AT+AUTOEXEC command, which failed to execute in certain cases, is now fully operational.

How to Update Your BleuIO Pro

To take advantage of the new features and bug fixes in firmware v1.0.1, simply download the latest firmware from our website and follow the provided update instructions. We recommend upgrading to the latest version to ensure your device is running optimally and to access the newest functionality available.

Share this post on :

BleuIO Firmware Update v2.7.6 – Unique Organization ID and Extended ASCII Support

We are excited to announce the release of BleuIO firmware version 2.7.6! 

This update brings important new features, bug fixes, and enhanced functionality that will make BLE application development even smoother. Here’s a breakdown of what’s included in this latest release:

New Features in v2.7.6

  • Unique Organization ID
    A key new feature in this update is the ability to set a Unique Organization ID (UOI). This ID will be stored in the device’s flash memory, allowing it to persist through power cycles. If the Unique Organization ID is set, it will be displayed in the response to the ATI command. This is particularly useful for users managing multiple BLE devices, as it helps uniquely identify each device by the organization. The Unique Organization ID can also be cleared as needed.
  • Support for Extended ASCII Characters
    BleuIO now handles Extended ASCII characters, broadening the range of compatible inputs for developers. This improvement enhances the device’s ability to handle more complex data and increases flexibility when working with BLE communication.

New Commands

With this firmware update, two new commands have been introduced to set and clear the Unique Organization ID:

  • AT+SETUOISet Unique Organization ID
    This command allows you to set a Unique Organization ID, which will be saved in flash memory and persist through power cycles. When set, the Unique Organization ID will be displayed in the response to the ATI command. You can set a Unique Organization ID up to 100 characters in length.
  • AT+CLRUOIClear Unique Organization ID
    If you need to clear the Unique Organization ID that was previously set, this command will allow you to do so. It removes the ID and resets the field to its default state.

Bug Fixes

  • Fixed Stability Issue During Device Connections
    A bug has been fixed in this update where BleuIO would reset when connected to two or more devices while scanning, especially when a disconnection event occurred. This issue could cause instability and interrupts during device connections. With the release of v2.7.6, this problem has been resolved, ensuring smoother operation when connecting to multiple BLE devices.

How to Update

Visit our firmware download page to access the latest firmware and ensure your BleuIO device benefits from these enhanced capabilities. Be sure to select the correct firmware version for your device model—BleuIO or BleuIO Pro—before downloading.

This update makes BleuIO more powerful, with improved stability and added flexibility for developers. The new Unique Organization ID feature and Extended ASCII support will certainly enhance the way you can use BleuIO in your projects. If you haven’t already, be sure to download the latest firmware and take advantage of these exciting new features!

Share this post on :

Firmware Update v2.7.5 for BleuIO: Enhanced Bonding and Device Address Type Display

We’re excited to announce the latest firmware update for the BleuIO Bluetooth Low Energy USB dongle: Firmware Version 2.7.5. This update introduces valuable new features and optimizations designed to improve usability and functionality. Here’s an in-depth look at what’s new and improved with this release.

Key Features and Improvements in v2.7.5

New Command: ATSAT

With version 2.7.5, BleuIO introduces a new command, ATSAT, which allows users to view the device address type—indicating whether the address is public or private—within scan results. This functionality is particularly useful for users looking to distinguish between public and private address types during Bluetooth scanning. When enabled, ATSAT will display:

  • [1] for private addresses
  • [0] for public addresses The ATSAT command works seamlessly with the AT+FINDSCANDATA and AT+SCANTARGET commands, which display the address type in scan results. Additionally, AT+GAPSCAN now always shows the device address type, ensuring that users have visibility into the address type for more effective management of scanned devices.

Expanded Bonded Device Capacity

In a significant enhancement to the device’s bonding functionality, this update expands the number of bonded devices that BleuIO can store from 8 to 16. Previously, when the bonding capacity reached the limit of 8 devices, new bonding was not possible until the user manually removed one or all existing bonded devices using the AT+GAPUNPAIR command. With the updated firmware, BleuIO can now store bonding information for up to 16 devices, simplifying the management of Bluetooth connections.

Automatic Removal of Oldest Bonded Devices:

When the 16-device limit is reached, BleuIO will now automatically remove the oldest bonded device that is not currently connected. Given that BleuIO supports a maximum of 8 simultaneous connections, there will always be at least 8 devices in the list that are not actively connected. This new functionality ensures users can always establish a new bond without the need to manually manage bonded devices, thereby improving convenience and user experience.

How to Update

Visit our firmware download page to access the latest firmware and ensure your BleuIO device benefits from these enhanced capabilities. Be sure to select the correct firmware version for your device model—BleuIO or BleuIO Pro—before downloading.

Share this post on :

Introducing BleuIO Firmware v2.7.4: Enhanced Scanning Capabilities

We are thrilled to announce the release of the latest firmware update for our popular Bluetooth Low Energy USB dongle, BleuIO. With version 2.7.4, we continue our commitment to providing the most versatile and user-friendly BLE solutions for developers. This update brings a host of new features designed to simplify and enhance your BLE application development process.

What’s New in Firmware v2.7.4?

Enhanced Scanning Functionality

In our ongoing effort to provide comprehensive BLE solutions, we’ve added several new commands that significantly improve the scanning capabilities of the BleuIO dongle. These updates allow developers to have more control over their BLE environment and extract more detailed information from nearby devices.

1. Device Name and Manufacturer Specific ID in Scan Results

The new firmware includes commands that enable the display of device names and manufacturer-specific IDs (Company IDs) in the advertising data or scan response. This feature is applicable to all modes of scans, including AT+GAPSCAN, AT+FINDSCANDATA, and AT+SCANTARGET. With these enhancements, identifying and differentiating between devices becomes more straightforward and efficient.

ATASSN: Toggle showing device names on or off in scans using AT+FINDSCANDATA and AT+SCANTARGET.

ATASSM: Toggle showing manufacturer-specific IDs on or off in scans using AT+GAPSCAN, AT+FINDSCANDATA, and AT+SCANTARGET.

2. Customizable Scan Interval and Scan Window

To provide more flexibility during connections, we’ve introduced a command to set the scan interval and scan window parameters. This feature ensures that you can fine-tune your scanning behavior to match the specific needs of your application, optimizing both power consumption and performance.

AT+CONNSCANPARAM: Set the scan interval and scan window used in connections.

3. Comprehensive Scan Parameter Configuration

We’ve also added a command to configure various scan parameters, allowing you to tailor the scanning process to your precise requirements. This includes settings for scan mode, scan type, scan interval, scan window, and filter duplicates, applicable across all scanning commands.

AT+SCANPARAM: Set scan parameters for AT+GAPSCAN, AT+FINDSCANDATA, and AT+SCANTARGET.

Benefits of the New Features

These enhancements are designed to offer several key benefits:

Improved Device Identification: Easily identify devices by their names and manufacturer IDs, making it simpler to manage and interact with multiple BLE devices.

Customizable Performance: Adjust scan intervals and windows to optimize for either speed or power efficiency based on your application’s needs.

Greater Control: Fine-tune scanning parameters to ensure you capture the most relevant data, minimizing noise and maximizing the efficiency of your BLE operations.

How to Update

Updating your BleuIO dongle to firmware version 2.7.4 is straightforward. Simply follow the instructions provided in our firmware update guide.

Get Started with the New Commands

To help you get started with the new features, we’ve updated our AT command reference guide with detailed explanations and examples for each of the new commands.

Share this post on :

BleuIO Firmware Update v2.7.3: Enhancing Connectivity and Usability

The latest firmware update for BleuIO, version 2.7.3, brings a suite of new functionalities and commands designed to enhance the performance and user experience of this Bluetooth Low Energy (BLE) USB dongle. With continuous firmware updates, BleuIO ensures that users can develop BLE applications quickly and efficiently. Here’s a detailed look at what the new update offers:

New Functionalities in v2.7.3

  1. Bonded Device Connectivity Improvement:
    • A new command has been introduced to scan for and connect to bonded devices, even if these devices are using a Private Random Resolvable Address. This improvement ensures that devices can maintain secure connections and improve overall reliability in various use cases.
  2. Toggle Resolved Addresses in Scan Results:
    • Users now have the option to toggle on or off the display of resolved addresses in scan results. This feature can be activated when using the AT+GAPSCAN command, providing greater control over the information displayed during device scans.
  3. Index-based Connection Command:
    • The AT+GAPCONNECT command has been enhanced to allow the use of an index from scan results obtained via the AT+GAPSCAN command. This simplifies the connection process by removing the need to input the full MAC address.
  4. Verbose Mode Index Display:
    • A new command allows users to toggle on or off the display of indexes from AT+GAPSCAN scan results in verbose mode. This feature is particularly useful for developers who need detailed scan information for debugging and development purposes.

New Commands Added

  1. AT+CONNECTBOND:
    • This command facilitates connection with already bonded devices, even if these devices are advertising using a Private Random Resolvable Address. It streamlines the reconnection process and enhances device management.
  2. ATSRA:
    • This command enables the display of resolved addresses in the scan results. It is a useful tool for users who need to view detailed addressing information during device scans.
  3. ATSIV:
    • This command allows users to show indexes in the verbose mode scan results. It provides an additional layer of information that can be crucial for in-depth analysis and debugging.

The v2.7.3 firmware update for BleuIO brings significant enhancements that improve both connectivity and usability. By adding new commands and functionalities, BleuIO continues to support developers in creating robust and efficient BLE applications. Whether you’re working on a new project or maintaining an existing application, these updates offer valuable tools and improvements to streamline your development process.

The new firmware can be downloaded from our getting started guide.

Share this post on :

BleuIO Firmware Update 2.7.2: Enhanced Security and Stability

The BleuIO Bluetooth Low Energy (BLE) USB dongle continues to set the standard for BLE application development with its latest firmware update, version 2.7.2. This update brings significant enhancements, focusing on security features and critical bug fixes, making it an essential upgrade for developers and users of BleuIO.

Key Enhancements in Firmware 2.7.2

Enhanced Security with Authentication and Encryption Permissions

One of the most notable additions in this update is the introduction of Authentication and Encryption Permission support for Custom Service attributes. This feature is a major step forward in ensuring secure BLE communications. The permissions framework allows the server (BleuIO) to determine the client’s access level to characteristic or descriptor values based on the need for an authenticated and/or encrypted connection. This means that sensitive data can now be protected more robustly, ensuring that only authorized clients can read from or write to specific attributes.

Bug Fixes and Stability Improvements

The 2.7.2 firmware update also addresses several bugs that were affecting the reliability and performance of the BleuIO dongle. Here are the key fixes:

  1. AT+GETBOND Command Bug Fixes:
    • Incorrect MAC Addresses: Previously, the AT+GETBOND command occasionally returned incorrect MAC addresses. This issue has now been resolved, ensuring accurate reporting of bonded device addresses.
    • Removal of Address Type: The address type part of the MAC address, which was always returned as PUBLIC_ADDRESS (0) and not stored with the bonding information, has been removed. This simplification helps in reducing confusion and potential errors in handling bonded device information.
  2. AT+GAPSCAN Command Stability:
    • The command AT+GAPSCAN= with an empty argument previously caused the device to reset unexpectedly. This bug has been fixed, ensuring stable and predictable behavior when scanning for devices.
  3. Connection Initiation Fixes:
    • The update resolves issues where attempting to initiate a connection using AT+GAPCONNECT while also advertising led to unpredictable behavior, such as being unable to connect or scan properly. This fix enhances the overall stability and reliability of establishing BLE connections.

For developers and users of the BleuIO dongle, updating to firmware version 2.7.2 is highly recommended. The new security features ensure that your BLE applications can enforce stringent access controls, protecting sensitive data. The bug fixes improve the overall functionality and reliability of the device, reducing the likelihood of encountering errors during development and deployment.

For more detailed information and to download the latest firmware, visit the BleuIO getting started guide.

Share this post on :

BleuIO JavaScript Library Update (v1.1.2): Supports BleuIO Firmware v2.7.1

BleuIO JavaScript library received a significant update to version 1.1.2, allows compatibility with BleuIO firmware v2.7.1. This update introduces several new commands, expanding the capabilities of BleuIO and helps developers to innovate further.

Here’s a breakdown of the key additions in version 1.1.2:

  1. at_customservice(): This function allows developers to set or query Custom Services, with the ability to add up to 5 Characteristics. Custom Services play a vital role in tailoring BLE applications to specific use cases, and this addition enhances flexibility in service customization.
  2. at_customservicestart() and at_customservicestop(): These functions enable the starting and stopping of Custom Services based on the settings configured using at_customservice(). This dynamic control over service activation facilitates seamless integration and management of BLE functionalities.
  3. at_customservicereset(): In scenarios where resetting Custom Service settings becomes necessary, this function comes to the rescue. It halts the Custom Service and resets configurations set by at_customservice(), ensuring a clean slate for subsequent operations.
  4. at_suotastart() and at_suotastop(): The addition of these functions facilitates over-the-air firmware updates (SUOTA) by enabling or disabling the SUOTA Service and associated advertising. This capability simplifies the process of updating BLE devices remotely, enhancing maintenance and scalability.
  5. at_autoexec() and at_clrautoexec(): These functions provide control over automatic execution of commands upon BleuIO startup. Developers can set or clear up to 10 commands, optimizing device initialization and enhancing user experience.
  6. at_connparam(): This function simplifies the management of connection parameters, allowing developers to set or display preferred values. Real-time updates during connection enable fine-tuning of parameters for optimal performance.

How to use: Updating to BleuIO JavaScript library 1.1.2 is a straightforward process. Use the following commands to use the lates BleuIO JavaScript library npm i bleuio

Documentation and Further Details: Comprehensive details, usage examples, and guidelines to use the new functionalities introduced in version 1.1.2 of the BleuIO JavaScript library is available at the official NPM page https://www.npmjs.com/package/bleuio

Share this post on :