- π Overview
- πΎ Features
- π Project Structure
- π Getting Started
- π Project Roadmap
- π° Contributing
- π License
- π Acknowledgments
This is a small project that will allow a user to flash an ESP32 dev-board with the included code, and controll a digital output pin as if it was a bass knob. This is in an extreme WIP stage and will slowly work more and more as it is worked on, see features for what is working.
- Users can link devices and control a level-style knob to adjust gain or volume.
- Users can link their ESP32 device with the app using BLE technology, allowing for seamless communication between the two.
- Users can easily link their devices by scanning for available devices and selecting the one they want to control.
- Users can adjust the gain or volume of their device using a level-style knob, allowing for precise control over the audio output.
- Users can customize various settings such as the range of the knob, the minimum and maximum values, and the step size to suit their preferences.
- The app will provide real-time updates on the current value of the knob, allowing users to see how it is affecting the audio output in real-time.
- Users can control multiple devices simultaneously using the app, making it ideal for use cases such as controlling multiple speakers or amplifiers.
βββ krisDial/
βββ ESP32
β βββ ESP32.ino
β βββ ESP32Client.ino
βββ config.xml
βββ jsconfig.json
βββ package-lock.json
βββ package.json
βββ typings
β βββ cordova-typings.d.ts
βββ www
βββ css
βββ img
βββ index.html
βββ jsKRISDIAL/
__root__
package-lock.json NPM Generated filejsconfig.json Config file for Cordovapackage.json NPM Generated file
ESP32
ESP32Client.ino Main ESP CodeESP32.ino Secondary ESP Code
www
index.html Main Application GUI layoutcss
index.cs Static styles for the indexcustom.css Custom styles to be used across all built in Pagesjs
index.js Javascript driver file for the indexjquery-3.7.1.slim.min.js Jquery for easy HTML Dom element access
typings
cordova-typings.d.ts Cordova Type script Reference file
Before getting started with krisDial, ensure your runtime environment meets the following requirements:
- Programming Language: HTML + Javascript
- Package Manager: Npm
- Required Software: Android Studio
- Android Version: Latest
Install krisDial using one of the following methods:
Build from source:
- Clone the krisDial repository:
β― git clone https://github.com/retreat896/krisDial- Navigate to the project directory:
β― cd krisDial- Install the project dependencies:
β― npm installFind your virtual Android Device using the following command: Using npm Β
β― emulator -list-avdsRun krisDial using the following command: Using npm Β
β― emulator -avd YOUR_AVD_NAME-
The Begining:Implement a basic BLE android app using Cordova -
ESP I/O: Implement the client and server for the BLE on the ESP -
Application I/O: Implement the client and server for the application side -
UI Overhaul: Implement a flat modern style GUI for the application
- π Report Issues: Submit bugs found or log feature requests for the
krisDialproject. - π‘ Submit Pull Requests: Review open PRs, and submit your own PRs.
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/retreat896/krisDial
- 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!