f1xpl/MtcdAutoVolume


Adjust the volume level to speed

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.f1xpl:MtcdAutoVolume:1.1'
	}
	dependencies {
		implementation("com.github.f1xpl:MtcdAutoVolume:1.1")
	}
	<dependency>
	    <groupId>com.github.f1xpl</groupId>
	    <artifactId>MtcdAutoVolume</artifactId>
	    <version>1.1</version>
	</dependency>

                            
    libraryDependencies += "com.github.f1xpl" % "MtcdAutoVolume" % "1.1"
        
        

                            
    :dependencies [[com.github.f1xpl/MtcdAutoVolume "1.1"]]
        
        

Readme


MtcdAutoVolume

Adjust the volume level to speed automatically.

Install, configure and enjoy

  • No root access required
  • No xposed framework needed
  • Automatic startup
  • Volume level is set in percentage in range <0, 100>%.
  • Speed range is <0, 139> Kph or <0, 86> Mph.
  • Generation of volume level in linear manner.
  • Keep music playing while configuring MtcdAutoVolume. Sliding on seekbar will change volume level what gives you preview of volume level settings.
  • Volume level will not be dropped below volume level of the system

Disable or enable automatic volume adjustment with MtcdTools

Create Broadcast Intent action with following parameters:

Intent action: com.microntek.f1x.mtcdautovolume.toggle

or

Intent action: com.microntek.f1x.mtcdautovolume.enable

or

Intent action: com.microntek.f1x.mtcdautovolume.disable

Then bind it to the desired keys sequence. Toast message with current status of automatic volume adjustment will be displayed.