You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

pynecil

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pynecil

Python library to communicate with Pinecil V2 soldering irons via Bluetooth

4.1.1
Source
pipPyPI
Maintainers
1

Pynecil

Python library to communicate with Pinecil V2 soldering irons via Bluetooth

build codecov PyPI version "Buy Me A Coffee" GitHub Sponsor

📖 Documentation

📦 Installation

You can install Pynecil via pip:

pip install pynecil

🚀 Usage

Basic Example

import asyncio
from pynecil import CharSetting, discover, Pynecil 

async def main():
    
    device = await discover()
    client = Pynecil(device)

    device_info = await client.get_device_info()

    live_data = await client.get_live_data()

    await client.write(CharSetting.SETPOINT_TEMP, 350)

asyncio.run(main())

For more advanced usage, refer to the documentation.

🛠 Contributing

Contributions are welcome! To contribute:

  • Fork the repository.
  • Create a new branch.
  • Make your changes and commit them.
  • Submit a pull request.

Make sure to follow the contributing guidelines.

📜 License

This project is licensed under the MIT License - see the LICENSE file for details.

❤️ Support

If you find this project useful, consider buying me a coffee ☕ or sponsoring me on GitHub!

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts