Skip to main content

Python wrapper for coinesAPI

Project description

COINESPY: Interface for Bosch Sensortec's Engineering Boards.

COINESPY provides a python interface for interacting with the Bosch Sensortec's Engineering boards.

The library offers the following range of functionalities:

  • Control VDD and VDDIO of sensor
  • Configure SPI and I2C bus parameters
  • Read and write into registers of sensors from Bosch Sensortec via SPI and I2C
  • Read and write digital pins of the Engineering Board.

Engineering Board driver installation

To install the driver for the Engineering Board, follow these steps:

  • Navigate to the USB driver location: <path_to_python_site_packages>\coinespy\driver.
  • Run the USB driver.

Firmware update

Prerequisites

Before proceeding, ensure that the selected Engineering Board is flashed with either Coines bridge or DD firmware.

Steps to update firmware

To update the Coines bridge firmware to the Engineering Board, follow these steps:

  • Open the firmware folder located at <path_to_python_site_packages>\coinespy\.
  • Select the appropriate subfolder that corresponds to your specific board type.
  • Run the provided .bat/.sh file within the selected subfolder to initiate the firmware update process.

Configuration for BLE communication

Windows

To enable Bluetooth Low Energy (BLE) communication with coinespy Python library on a Windows machine, users need to modify their environment variables after installing the package. Based on the PC's architecture, add one of the following paths to your environment variables.

  • 64-bit: <path_to_python_site_packages>\coinespy\bin\x64
  • 32-bit: <path_to_python_site_packages>\coinespy\bin\x86

Linux/MacOS

For BLE communication in Linux and MacOS, no additional configuration is necessary.

Note

To determine the installation directory of coinespy, use pip show coinespy. Replace <path_to_python_site_packages> with your Python site packages directory.

Code example

Here’s a script to verify the installation by fetching the COINESPY version, and the hardware and software versions of the connected board.

	import coinespy as cpy
	from coinespy import ErrorCodes
	
	COM_INTF = cpy.CommInterface.USB
	
	if __name__ == "__main__":
		board = cpy.CoinesBoard()
		print('COINESPY version - %s' % cpy.__version__)
		board.open_comm_interface(COM_INTF)
		if board.error_code != ErrorCodes.COINES_SUCCESS:
			print(f'Could not connect to board: {board.error_code}')
		else:
			b_info = board.get_board_info()
			print('BoardInfo')
        	print(f'Software ID: v{(b_info.SoftwareId >> 12) & 0xF}.{(b_info.SoftwareId >> 6) & 0x3F}.{b_info.SoftwareId & 0x3F}')
        	print(f'Type of Board: {hex(b_info.Board)}')
			board.close_comm_interface()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

coinespy-1.0.6.tar.gz (6.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

coinespy-1.0.6-py3-none-any.whl (7.6 MB view details)

Uploaded Python 3

File details

Details for the file coinespy-1.0.6.tar.gz.

File metadata

  • Download URL: coinespy-1.0.6.tar.gz
  • Upload date:
  • Size: 6.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for coinespy-1.0.6.tar.gz
Algorithm Hash digest
SHA256 488df74846fcf8b9e57817bb5b7882886fe46d28aa8aa71e3e8ec73f850b83c0
MD5 7cb1266d079b7287d56c79e928866101
BLAKE2b-256 05592aeb6c316cb190568f96751dafea5c3526f4d066981712fc9754f5ab6381

See more details on using hashes here.

File details

Details for the file coinespy-1.0.6-py3-none-any.whl.

File metadata

  • Download URL: coinespy-1.0.6-py3-none-any.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for coinespy-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 2a7a79cbdab0da495784c9559b0ad023746744fcd7f85deb1d28cf378348bf1a
MD5 af07df26afffbba4713db91e6f888f32
BLAKE2b-256 295e692313ac0be1abcb70296cf97bebcb883da4ce69d83ab79df7370916a759

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page