Skip to content

Commit

Permalink
Larger CPU cooldown threshold per #16
Browse files Browse the repository at this point in the history
  • Loading branch information
n3alz committed Feb 18, 2021
1 parent 09e060c commit a3d44bc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/com/uplexa/androidminer/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

final class Utils {
static public Integer INCREMENT = 5;
static public Integer MIN_CPU_TEMP = 55;
static public Integer MIN_CPU_TEMP = 40; // Changed from 55 to 40 as per rqst in #16
static public Integer MIN_BATTERY_TEMP = 30;
static public Integer MIN_COOLDOWN = 10;

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/fragment_settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@
android:id="@+id/seekbarcputemperature"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="5"
android:max="9"
android:maxHeight="5dp"
android:min="1"
android:minHeight="5dp"
Expand Down Expand Up @@ -749,4 +749,4 @@

</RelativeLayout>

</RelativeLayout>
</RelativeLayout>
4 changes: 2 additions & 2 deletions app/src/main/res/layout/fragment_wizard_settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
android:id="@+id/seekbarcputemperature"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="5"
android:max="9"
android:maxHeight="5dp"
android:min="1"
android:minHeight="5dp"
Expand Down Expand Up @@ -333,4 +333,4 @@

</RelativeLayout>

</RelativeLayout>
</RelativeLayout>

0 comments on commit a3d44bc

Please sign in to comment.