-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Several improvements to the Wi-Fi Spectrum Chart
- Pass in the latest wifi scan results so the spectrum chart is not blank by default - Map the SSID to a specific color so it does not keep changing - Remove the padding for the axis labels so that they don't turn into ... on certain resolution screens - Lighten some chart colors to make them easier to see against the black background
- Loading branch information
1 parent
b98cb89
commit 5e1297f
Showing
6 changed files
with
104 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
networksurvey/src/main/java/com/craxiom/networksurvey/ui/wifi/model/WifiNetworkInfoList.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.craxiom.networksurvey.ui.wifi.model | ||
|
||
import com.craxiom.networksurvey.model.WifiRecordWrapper | ||
import java.io.Serializable | ||
|
||
data class WifiNetworkInfoList( | ||
val networks: List<WifiRecordWrapper>, | ||
) : Serializable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters