WURTH ELEKTRONIK 2611036024001 Proteus-III Bluetooth Module User Manual

June 5, 2024
WURTH ELEKTRONIK

2611036024001 Proteus-III Bluetooth Module
User Manual

Revision history

Manual version IIW version Notes Date
1.0 1. •Initial version of the manual February-20
1. 1. •Updated Declaration of EU conformity to latest Version of EN 300 328

after successfully passing corresponding delta test in chapter Regulatory compliance information.| November-20
1.| 1.| •Updated Declaration of EU conformity in chapter Regulatory compliance information.| December-20

Abbreviations and abstract

Abbreviation Name Description
FSA Field Sales Engineer Support and sales contact person responsible for

limited sales area
HIGH| High signal level|
LOW| Low signal level|
RF| Radiofrequency| Describes everything relating to wireless transmission.
CART| | Universal Asynchronous Receiver Transmitter allows communicating with the module of a specific interface.
VDD| Supply voltage|

Introduction

The Proteus-III is a radio module that provides wireless connectivity capabilities in the 2.4 GHz frequency band. The Proteus-III Plug incorporates the Proteus-III in a USB  stick form factor enabling easy interfacing with any USB-enabled device like a personal computer or laptop. The Proteus-III Plug allows quick set-up of a radio link between PC  and any system with an integrated Proteus-III radio module.

Ordering information

WE order code Description
2611036024001 Radio dongle including Proteus-III

Functional description

The Proteus-III Plug consists of a Proteus-III radio module along with a serial-to-USB adapter that enables direct connection to any USB compatible device. An FTDI serial to- USB converter chip FT231X connects the USB interface of the Proteus-III Plug to the UART pins of the integrated radio module. Besides UART, additional digital GPIO pins  (CBUS) are connected to the radio module to provide special functions like a reset. The figure ✶ illustrates all the functional components of the Proteus-III Plug.

WURTH ELEKTRONIK 2611036024001 Proteus III Bluetooth Module - Functional
description

Typical Setup
The Proteus-III Plug offers a Command API or a Transparent (“Peripheral Only” mode) on its UART interface.

The Proteus-III Plug does not integrate into the possibly existing Bluetooth® interface of any host like a Windows or Linux PC.

In the first setup shown below the PC does not need to implement any Bluetooth® specific
functions or drivers, just the Command API of the Proteus-III needs to be implemented using a SerialPort connection (via VCP or D2XX).
This API allows to select the Central Role, Scan for devices, and perform the steps to connect to other Proteus Bluetooth® LE devices, which are connectable.
The Würth Elektronik eiSos Wireless Connectivity SDK includes an example implementation as C source code which can be ported with minimum effort to any host.

connect to other Proteus Bluetooth® LE devices, which are connectible. The Mirth Elektronik eiSos Wireless Connectivity SDK includes an example implementation as C source code which can be ported with minimum effort to any host.

In the second typical setup, the Smartphone includes a Bluetooth® LE Chipset and Bluetooth® LE Stack (as part of the Smartphone operating system) offering APIs for Bluetooth® LE to any App on the Smartphone. This App needs to implement Proteus-Ill I Profiles and Characteristics (UUIDs) as well as the protocol used by Proteus-Ill.

The Proteus-III Application Note “Advanced User Guide” (see: WE Documentation Download Page) provides all information required for developers.
The Proteus-III Plug in this setup is being used as a peripheral device that offers its services. This Peripheral Mode can be used either in Command Mode or in the so-called “Peripheral Only Mode”,  which offers a transparent UART to Bluetooth® LE (and vice versa) interface once a central device initiated a connection and the connection setup negotiation between the two roles was successful.

WURTH ELEKTRONIK 2611036024001 Proteus III Bluetooth Module - Typical
Setup

Taking into operation

To use the Proteus-III Plug, the drivers of the FTDI converter IC has to be installed. This can be achieved by following the FTDI “Install Guides” available at the link below. The  VCP driver for Windows OS will also install D2XX drivers in parallel. In the case of modern Linux Kernels, the VCP driver is already part of the Kernel: Windows VCP: https://www.ftdichip.com/Drivers/VCP.htm

It is recommended to restart the PC after the installation of drivers.

Please note that the FTDI drivers are not available for all platforms. We have tested Windows 10 x64 as well as Raspberry Pi 3B and 4B with Raspbian Buster.

On proper installation of the drivers, the module appears as a virtual COM port on the PC (ttyUSBx on Linux, COMx on Windows) in case of the VCP driver use. This COM  port can be opened in any serial emulator program or user- written software to communicate with the radio module.
The radio module responds to commands in a specific format. Please refer to the corresponding Proteus-III user manual for the complete description of the command set.

When connecting the plug to the PC, it is recommended to reset the plug once.
This can be done using the plug’s reset button or using the CBUS0 pin (see chapter 2. 2. 2. 1). This reset procedure is also recommended after each reboot of the PC.

Timing parameters – Reset and power-up
After resetting the Proteus-Ill Plug a CMD_GETSTATE_CNF is sent (when in Command Mode) to the serial interface as soon as the Proteus-Ill is ready for operation. In Peripheral Only mode this information is not available as a UART signal or on the USB interface.

Description Typ. Unit
Ready after reset 4 ms

The USB dongle has a delay -r implemented in the reset line towards the module to ensure stable VCC and stable FT231x signal levels after plugging the dongle into the USB of the host. This will introduce an additional typ. delay of -c = 50ms in case of a Proteus-Ill Plug power-up and reset. The Reset function of the Proteus-Ill Plug (via push-button, CBUSO or CMD_RESET_REQ) has also this additional delay.

Usage of CBUS pins
To switch the CBUS pins static HIGH or LOW and thus to use the provided pins functions of the Proteus-III radio module, the D2XX driver of FTDI has to be used. This driver is part of the previously mentioned VCP driver installation in the case of Windows OS. In the case of Linux, a manual installation is required.
Please follow FTDI’s “Installation Guides” for proper D2XX install: https://www.ftdichip.com/Drivers/D2XX.htm

Examples codes and Tutorials for ¨how to use the D2XX driver within your own software tool¨ can be found in the software example section of:
https://www.ftdichip.com/Support/SoftwareExamples/CodeExamples.htm

Resetting the Proteus-Ill Plug using the CBUS pin The /RESET pin of the Proteus-Ill can be used to reset the integrated radio module. As the /RESET pin is connected to the CBUSO pin of the integrated FTDI chip, the radio module can be reset by pulling the CBUSO pin low for at least 100ms and releasing it to a high level again. By default, the CBUSO pin of the FT231X is configured as FT_CBUS_GPIO (bit-bang), such that the FTDI D2XX driver function SetBitMode can be used.

/ set CBUSO to output level LOW // prep: create and connect an FTDI device intance /

SetBitMode(0x10, FTDI.FT_BIT_MODES.FT_BIT_MODE_CBUS_BITBANG);

/ hold CBUSO for at least 100ms on LOW level / wait_ms(100);

/* clear FTDI receive and send buffers d Purge(FTDI.FT_PURGE.FT_PURGE_RX I FTDI.FT_PURGE.FT_PURGE_TX);

/ set CBUSO to output level HIGH /

SetBitMode(0x00, FTDI.FT_BIT_MODES.FT_BIT_MODE_RESET);

/ a delay according to the reset timing parameter will occur (see manual) /

/ disconnect and close the FTDI device instance /

Code 1:Pin reset via CBUS0 using the D2XX driver

Switching from command mode to peripheral only mode and vice versa
The operation mode of the Proteus-III Plug can be defined by applying the right voltage level at the OP_MODE pin of the Proteus-III during its start-up phase. As this pin is connected to the CBUS3 pin of the built-in FTDI converter chip, the CBUS3 pin can be controlled by the host.

Additional care has to be taken when configuring the pins on the FTDI converter.
The EEPROM content of the chip is changed by this action. Any misconfiguration may prevent the normal operation of the USB dongle. This method is not intended for periodic use. The factory defaults of the CBUS pins are: CBUS0 to CBUS2 – GPIO, CBUS3 – CBUS_Drive_0

By default, the CBUS3 pin of the FT231 X is configured as FT_CBUS_Drive_O (static LOW) such that the Proteus-Ill Plug starts in command mode. To start the plugin peripheral only mode, configure the CBUS3 pin as FT_CBUS_Drive_1 (static HIGH) and perform a reset of the device, as specified in chapter 2.2.2.1.
In case the plug shall start in command mode again, configure the CBUS3 pin as FT_CBUS_Drive_O (static LOW) and perform a reset of the device, as specified in chapter 2.2.2.1.

For reasons of simplicity, Würth Elektronik eiSos provides a small Windows PC tool¹, that uses the FTDI D2XX driver instructions to set the Proteus-III Plug into the desired operation mode.

Figure 4:Windows tool to set the Proteus-III Plug to peripheral only mode or command mode

Regulatory compliance information

Important notice EU
The use of RF frequencies is limited by national regulations. The Proteus-III Plug has been designed to comply with the R&TTE directive 1999/5/EC and the RED directive 2014/53/EU of the European Union (EU).
The Proteus-III Plug can be operated without notification and free of charge in the area of the European Union. However, according to the R&TTE / RED directive, restrictions (e.g. in terms of duty cycle or maximum allowed RF power) may apply.

Important notice FCC
The use of RF frequencies is limited by national regulations. The Proteus-III Plug has been designed to comply with the FCC Part 15.
The Proteus-III Plug can be operated without notification and free of charge in the area of the United States of America. However, according to the FCC, Part 15,  restrictions (e.g. in terms of the maximum allowed RF power and antenna) may apply.

EU Declaration of conformity

EU DECLARATION OF CONFORMITY
Radio equipment: 2611036024001
The manufacturer: Würth Elektronik eiSos GmbH & Co. KG
Max-Eyth-Straße 1
74638 Waldenburg

This declaration of conformity is issued under the sole responsibility of the manufacturer.
The object of the declaration: 2611036024001
The object of the declaration described above is in conformity with the relevant Union har-monetization legislation Directive 2014/53/EU and 2011/65/EU with its amending Annex II EU 2015/863. Following harmonized norms or technical specifications have been applied:

EN 300 328 V2.2.2 (2019-07)
EN 301 489-1 V2.2.3 (2019-11)
EN 301 489-17 V3.2.4 (2020-09)
EN 62479: 2010
EN 62368-1:2014 + AC:2015

Trier, 21th of December 2020
Place and date of issue

FCC – Federal Communications Commission
The device has been FCC Part 15 B tested.
Contains FCC ID: R7T1101102
The enclosed device complies with Part 15 of the FCC rules. Operation is subject to the following two conditions:
(i.) this device may not cause harmful interference and
(ii.) this device must accept any interference received, including interference that may cause undesired operation.

IC – Industry Canada
This device contains ISED: 5136A-1101102
This device complies with Industry Canada license-exempt RSS standard(s). Operation is subject to the following two conditions: (1) this device may not cause harmful interference, and (2) this device must accept any interference received, including interference that may cause undesired operation.

Japanese Radio Law Compliance

Japanese Radio Law Compliance.
This device contains R 201-190950
R 201-190950 is granted pursuant to the Japanese Radio Law.
R 201-190950 should not be modified (otherwise the granted designation number will become invalid.
The MAC address of the radio device maintains the format 00:18:DA:xx:xx: xx. The latter part xx:xx: xx of the MAC address coincides with the serial number of the device.

Label
Due to the size of the Proteus-III label, the certification label of the Proteus-III is not placed onto the module.

Bluetooth listing details
listing of the underlying radio module Proteus-III. The Proteus-III Plug’s Bluetooth® listing is based on the Bluetooth®

Type Data
Design name Proteus-III
Declaration ID D047845
QDID 141060
Specification name 5.1
Project type End product

Important notes

The following conditions apply to all goods within the wireless connectivity product range of Würth Elektronik eiSos GmbH & Co. KG:

  1. General customer responsibility
    Some goods within the product range of Würth Elektronik eiSos GmbH & Co. KG contain statements regarding general suitability for certain application areas. These statements about suitability are based on our knowledge and experience of typical requirements concerning the areas, serve as general guidance, and cannot be estimated as binding statements about the suitability for a customer application. The responsibility for the applicability and use in a particular customer design is always solely within the authority of the customer. Due to this fact, it is up to the customer to evaluate, where appropriate to investigate and to decide whether the device with the specific product characteristics described in the product specification is valid and suitable for the respective customer application or not. Accordingly, the customer is cautioned to verify that the documentation is current before placing orders.

  2. Customer responsibility related to specific, in particular safety-relevant applications
    It has to be clearly pointed out that the possibility of a malfunction of electronic components or failure before the end of the usual lifetime cannot be completely eliminated in the current state of the art, even if the products are operated within the range of the specifications. The same statement is valid for all software source code and firmware parts contained in or used with or for products in the wireless connectivity and sensor product range of Würth Elektronik eiSos GmbH & Co. KG. In certain customer applications requiring a high level of safety and especially in customer applications in which the malfunction or failure of an electronic component could endanger human life or health, it must be ensured by the most advanced technological aid of suitable design of the customer application that no injury or damage is caused to third parties in the event of malfunction or failure of an electronic component.

  3. Best care and attention
    Any product-specific datasheets, manuals, application notes, PCNs, warnings, and cautions must be strictly observed in the most recent versions and matched to the product firmware revisions. These documents can be downloaded from the product specific sections on the wireless connectivity homepage.

  4. Customer support for product specifications
    Some products within the product range may contain substances, which are subject to restrictions in certain jurisdictions in order to serve specific technical requirements.  Necessary information is available on request. In this case, the field sales engineer or the internal sales person in charge should be contacted who will be happy to support in this matter.

  5. Product improvements
    Due to constant product improvement, product specifications may change from time to time. As a standard reporting procedure of the Product Change Notification (PCN) according to the JEDEC-Standard, we inform about major changes. In case of further queries regarding the PCN, the field sales engineer, the internal salesperson or the technical support team in charge should be contacted. The basic responsibility of the customer as per sections 4.1and 4.2 remains unaffected. All wireless connectivity module driver software ¨wireless connectivity SDK¨ and its source codes as well as all PC software tools are not subject to the Product Change Notification information process.

  6. Product life cycle
    Due to technical progress and economical evaluation, we also reserve the right to discontinue production and delivery of products. As a standard reporting procedure of the Product Termination Notification (PTN) according to the JEDEC- Standard, we will inform at an early stage about inevitable product discontinuance. According to this, we cannot ensure that all products within our product range will always be available. Therefore, it needs to be verified with the field sales engineer or the internal sales person in charge about the current product availability expectancy before or when the product for application design-in disposal is considered. The approach named above does not apply in the case of individual agreements deviating from the foregoing for customer-specific products.

  7. Property rights
    All the rights for contractual products produced by Würth Elektronik eiSos GmbH & Co. KG on the basis of ideas, development contracts as well as models or templates that are subject to copyright, patent or commercial protection supplied to the customer will remain with Würth Elektronik eiSos GmbH & Co. KG. Würth Elektronik eiSos GmbH & Co. KG does not warrant or represent that any license, either expressed or implied, is granted under any patent right, copyright, mask work right, or other intellectual property right relating to any combination, application, or process in which Würth Elektronik eiSos GmbH & Co. KG components or services are used.

  8. General terms and conditions
    Unless otherwise agreed in individual contracts, all orders are subject to the current version of the “General Terms and Conditions of Würth Elektronik eiSos Group”, the last version available at www.we-online.com.

Legal notice

  1. Exclusion of liability
    Würth Elektronik eiSos GmbH & Co. KG considers the information in this document to be correct at the time of publication. However, Würth Elektronik eiSos GmbH & Co. KG reserves the right to modify the information such as technical specifications or functions of its products or discontinue the production of these products or the support of one of these products without any written announcement or notification to customers. The customer must make sure that the information used corresponds to the latest published information. Würth Elektronik eiSos GmbH & Co. KG does not assume any liability for the use of its products. Würth Elektronik eiSos GmbH & Co. KG does not grant licenses for its patent rights or for any other of its intellectual property rights or third-party rights.
    Notwithstanding anything above, Würth Elektronik eiSos GmbH & Co. KG makes no representations and/or warranties of any kind for the provided information related to their accuracy, correctness, or completeness, usage of the products, and/or usability for customer applications. Information published by Würth Elektronik eiSos GmbH & Co. KG regarding third-party products or services does not constitute a license to use such products or services or a warranty or endorsement thereof.

  2. Suitability in customer applications
    The customer bears the responsibility for the compliance of systems or units, in which Würth Elektronik eiSos GmbH & Co. KG products are integrated, with applicable legal regulations. Customer acknowledges and agrees that it is solely responsible for compliance with all legal, regulatory, and safety- related requirements concerning its products, and any use of Würth Elektronik eiSos GmbH & Co. KG components in its applications, notwithstanding any applications-related information or support that may be provided by Würth Elektronik eiSos GmbH & Co. KG. The Customer represents and agrees that it has all the necessary expertise to create and implement safeguards that anticipate dangerous consequences of failures, monitor failures, and their consequences lessen the likelihood of failures that might cause harm, and take appropriate remedial actions. The customer will fully indemnify Würth Elektronik eiSos GmbH & Co. KGand its representatives against any damages arising out of the use of any Würth Elektronik eiSos GmbH & Co. KG components in safety-critical applications.

  3. Trademarks
    AMBER wireless is a registered trademark of Würth Elektronik eiSos GmbH & Co. KG. All other trademarks, registered trademarks, and product names are the exclusive property of the respective owners.

  4. Usage restriction
    Würth Elektronik eiSos GmbH & Co. KG products have been designed and developed for usage in general electronic equipment only. This product is not authorized for use in equipment where a higher safety standard and reliability standard is especially required or where a failure of the product is reasonably expected to cause severe personal injury or death unless the parties have executed an agreement specifically governing such use. Moreover, Würth Elektronik eiSos GmbH & Co. KG products are neither designed nor intended for use in areas such as military, aerospace, aviation, nuclear control, submarine, transportation (automotive control, train control, ship control), transportation signal, disaster prevention, medical, public information network, etc. Würth Elektronik eiSos GmbH & Co. KG must be informed about the intent of such usage before the design-in stage. In addition, sufficient reliability evaluation checks for safety must be performed on every electronic component, which is used in electrical circuits that require high safety and reliability function or performance. By using Würth Elektronik eiSos GmbH & Co. KG products, the customer agrees to these terms and conditions.

License terms

This License Terms will take effect upon the purchase and usage of the Würth Elektronik eiSos GmbH & Co. KG wireless connectivity products. You hereby agree that these license terms are applicable to the product and the incorporated software, firmware, and source codes (collectively, “Software”) made available by Würth Elektronik eiSos in any form, including but not limited to binary, executable, or source code form.
The software included in any Würth Elektronik eiSos wireless connectivity product is purchased by you on the condition that you accept the terms and conditions of this license
terms. You agree to comply with all provisions under this license terms.

  1. Limited license
    Würth Elektronik eiSos hereby grants you a limited, non-exclusive, non- transferable, and royalty-free license to use the software and under the conditions that will be set forth in this license terms. You are free to use the provided Software only in connection with one of the products from Würth Elektronik eiSos to the extent described in this license terms. You are entitled to change or alter the source code for the sole purpose of creating an application embedding the Würth Elektronik eiSos wireless connectivity product. The transfer of the source code to third parties is allowed to the sole extent that the source code is used by such third parties in connection with our product or another hardware provided by Würth Elektronik eiSos under strict adherence of this license terms. Würth Elektronik eiSos will not assume any liability for the usage of the incorporated software and the source code. You are not entitled to transfer the source code in any form to third parties without the prior written consent of Würth Elektronik eiSos.
    You are not allowed to reproduce, translate, reverse engineer, decompile, disassemble or create derivative works of the incorporated software and the source code in whole or in part. No more extensive rights to use and exploit the products are granted to you.

  2. Usage and obligations
    The responsibility for the applicability and use of the Würth Elektronik eiSos wireless connectivity product with the incorporated Firmware in a particular customer design is always solely within the authority of the customer. Due to this fact, it is up to you to evaluate and investigate, where appropriate, and to decide whether the device with the specific product characteristics described in the product specification is valid and suitable for your respective application or not.
    You are responsible for using the Würth Elektronik eiSos wireless connectivity product with the incorporated Firmware in compliance with all applicable product liability and product safety laws. You acknowledge to minimize the risk of loss and harm to individuals and bear the risk of failure leading to personal injury or death due to your usage of the product. Würth Elektronik eiSos’ products with the incorporated Firmware are not authorized for use in safety-critical applications, or where a failure of the product is reasonably expected to cause severe personal injury or death. Moreover, Würth Elektronik eiSos’ products with the incorporated Firmware is neither designed nor intended for use in areas such as military, aerospace, aviation, nuclear control, submarine, transportation (automotive control, train control, ship control), transportation signal, disaster prevention, medical, public information network, etc. You shall inform Würth Elektronik eiSos about the intent of such usage before the design-in stage. In certain customer applications require a very high level of safety and in which the malfunction or failure of an electronic component could endanger human life or health, you must ensure to have all necessary expertise in the safety and regulatory ramifications of your applications. You acknowledge and agree that you are solely responsible for all legal, regulatory, and safety-related requirements concerning your products and any use of Würth Elektronik eiSos’ products with the incorporated Firmware in such safety-critical applications, notwithstanding any applications-related information or support that may be provided by Würth Elektronik eiSos. YOU SHALL INDEMNIFY WÜRTH ELEKTRONIK EIDOS AGAINST ANY DAMAGES ARISING OUT OF THE USE OF WÜRTH ELEKTRONIK EISOS’ PRODUCTS WITH THE INCORPORATED FIRMWARE IN SUCH SAFETY-CRITICAL APPLICATIONS.

  3. Ownership
    The incorporated Firmware created by Würth Elektronik eiSos is and will remain the exclusive property of Würth Elektronik eiSos.

  4. Firmware update(s)
    You have the opportunity to request the current and actual Firmware for a bought wireless connectivity Product within the time of warranty. However, Würth Elektronik eiSos has no obligation to update modules firmware in their production facilities, but can offer this as a service on request. The upload of firmware updates falls within your responsibility, e.g. via ACC or another software for firmware updates. Firmware updates will not be communicated automatically. It is within your responsibility to check the current version of a firmware in the latest version of the product manual on our website. The revision table in the product manual provides all necessary information about firmware updates. There is no right to be provided with binary files, so-called “Firmware images”, which could be flashed through JTAG, SWD, Spi-Bi-Wire, SPI, or similar interfaces.

  5. Disclaimer of warranty
    THE FIRMWARE IS PROVIDED “AS IS”. YOU ACKNOWLEDGE THAT WÜRTH ELEKTRONIK EISOS MAKES NO REPRESENTATIONS AND WARRANTIES OF ANY KIND RELATED TO, BUT NOT LIMITED TO THE NON-INFRINGEMENT OF THIRD PARTIES INTELLECTUAL PROPERTY RIGHTS OR THE MERCHANTABILITY OR FITNESS FOR YOUR INTENDED PURPOSE OR USAGE. WÜRTH ELEKTRONIK EISOS DOES NOT WARRANT OR REPRESENT THAT ANY LICENSE, EITHER EXPRESS OR IMPLIED, IS GRANTED UNDER ANY PATENT RIGHT, COPYRIGHT, MASK WORK RIGHT, OR OTHER INTELLECTUAL PROPERTY RIGHT RELATING TO ANY COMBINATION, MACHINE, OR PROCESS IN WHICH THE WÜRTH ELEKTRONIK EISOS’ PRODUCT WITH THE INCORPORATED FIRMWARE IS USED. INFORMATION PUBLISHED BY WÜRTH ELEKTRONIK
    EISOS REGARDING THIRD-PARTY PRODUCTS OR SERVICES DOES NOT CONSTITUTE A LICENSE FROM WÜRTH ELEKTRONIK EISOS TO USE SUCH PRODUCTS OR SERVICES OR A WARRANTY OR ENDORSEMENT THEREOF.

  6. Limitation of liability
    Any liability not expressly provided by Würth Elektronik eiSos shall be disclaimed.
    You agree to hold us harmless from any third-party claims related to your usage of the Würth Elektronik eiSos’ products with the incorporated Firmware, software, and source code. Würth Elektronik eiSos disclaims any liability for any alteration or development created by you or your customers as well as for any combination with other products.

  7. Applicable law and jurisdiction
    Applicable law to these license terms shall be the laws of the Federal Republic of Germany. Any dispute, claim, or controversy arising out of or relating to this license terms shall be resolved and finally settled by the court competent for the location of Würth Elektronik eidos registered office.

  8. Severability clause
    If a provision of this license terms is or becomes invalid, unenforceable, or null and void, this shall not affect the remaining provisions of the terms. The parties shall replace any such provisions with new valid provisions that most closely approximate the purpose of the terms.

  9. Miscellaneous
    Würth Elektronik eiSos reserves the right at any time to change these terms at its own discretion. It is your responsibility to check at Würth Elektronik eiSos homepage for any updates. Your continued usage of the products will be deemed as the acceptance of the change.
    We recommend you be updated about the status of new firmware and software, which is available on our website or in our datasheet and manual and to implement new software in your device where appropriate.
    By ordering a wireless connectivity product, you accept these license terms in all terms.

more than you expect

WURTH ELEKTRONIK 2611036024001 Proteus III Bluetooth Module -
icon

Contact:
Würth Elektronik eiSos GmbH & Co. KG
Division Wireless Connectivity & Sensors
Max-Eyth-Straße 1
74638 Waldenburg
Germany
Tel.: +49 651 99355-0
Fax.: +49 651 99355-69
www.we-online.com/wireless-connectivity

References

Read User Manual Online (PDF format)

Loading......

Download This Manual (PDF format)

Download this manual  >>

Related Manuals