❯ Bt
Built with the tools and technologies:
- Overview
- Features
- Repository Structure
- Modules
- Getting Started
- Project Roadmap
- Contributing
- License
- Acknowledgments
❯
❯ Scan , connect,disconnect,pair any device ( allows you to use your phone's speaker )
└── bluetooth-connector-linux/
├── Entities
│ ├── connection.h
│ ├── pair.h
│ └── scanBluetoothDevices.h
├── Makefile
├── README.md
├── con.h
├── con.h.gch
├── connectors.h
├── db.txt
├── index.js
├── main.cpp
├── mainScreen.h
├── output
├── package-lock.json
├── package.json
└── yarn-error.log
Current
File | Summary |
---|---|
main.cpp | ❯ main |
mainScreen.h | ❯ mainScreen.h |
Makefile | ❯ Makefile |
con.h | ❯ con.h |
connectors.h | ❯ connectors |
db.txt | ❯ Database |
Entities
File | Summary |
---|---|
connection.h | ❯ connection.h |
scanBluetoothDevices.h | ❯ scanBluetoothDevices.h |
pair.h | ❯ pair.h |
CPP: 11
Build the project from source:
- Clone the bluetooth-connector-linux repository:
❯ git clone https://github.com/suaybdemir/bluetooth-connector-linux
- Navigate to the project directory:
❯ cd bluetooth-connector-linux
- Install the required dependencies:
❯ gcc -o myapp main.c
To run the project, execute the following command:
❯ ./myapp
Contributions are welcome! Here are several ways you can contribute:
- Report Issues: Submit bugs found or log feature requests for the
bluetooth-connector-linux
project. - Submit Pull Requests: Review open PRs, and submit your own PRs.
- Join the Discussions: Share your insights, provide feedback, or ask questions.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/suaybdemir/bluetooth-connector-linux
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.'
- Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!