diff --git a/.idea/gradle.xml b/.idea/gradle.xml
index 5912cd1..34c7dae 100644
--- a/.idea/gradle.xml
+++ b/.idea/gradle.xml
@@ -12,6 +12,7 @@
+
diff --git a/settings.gradle b/settings.gradle
index ca51868..9fc3bd3 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,2 +1,2 @@
-include ':app', ':piholeclient'
+include ':app', ':piholeclient', ':wearos'
rootProject.name='Pi-helper'
diff --git a/wearos/.gitignore b/wearos/.gitignore
new file mode 100644
index 0000000..796b96d
--- /dev/null
+++ b/wearos/.gitignore
@@ -0,0 +1 @@
+/build
diff --git a/wearos/build.gradle b/wearos/build.gradle
new file mode 100644
index 0000000..006c30c
--- /dev/null
+++ b/wearos/build.gradle
@@ -0,0 +1,34 @@
+apply plugin: 'com.android.application'
+apply plugin: 'kotlin-android'
+apply plugin: 'kotlin-android-extensions'
+
+android {
+ compileSdkVersion 29
+ buildToolsVersion "29.0.3"
+
+ defaultConfig {
+ applicationId "com.wbrawner.pihelper.wearos"
+ minSdkVersion 28
+ targetSdkVersion 29
+ versionCode 1
+ versionName "1.0"
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+dependencies {
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
+ implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
+ implementation 'com.google.android.support:wearable:2.4.0'
+ implementation 'com.google.android.gms:play-services-wearable:17.0.0'
+ implementation 'androidx.percentlayout:percentlayout:1.0.0'
+ implementation 'androidx.legacy:legacy-support-v4:1.0.0'
+ implementation 'androidx.recyclerview:recyclerview:1.0.0'
+ implementation 'androidx.wear:wear:1.0.0'
+ compileOnly 'com.google.android.wearable:wearable:2.4.0'
+}
diff --git a/wearos/proguard-rules.pro b/wearos/proguard-rules.pro
new file mode 100644
index 0000000..f1b4245
--- /dev/null
+++ b/wearos/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
diff --git a/wearos/src/main/AndroidManifest.xml b/wearos/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..839f38a
--- /dev/null
+++ b/wearos/src/main/AndroidManifest.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wearos/src/main/java/com/wbrawner/pihelper/wearos/MainActivity.kt b/wearos/src/main/java/com/wbrawner/pihelper/wearos/MainActivity.kt
new file mode 100644
index 0000000..905dba0
--- /dev/null
+++ b/wearos/src/main/java/com/wbrawner/pihelper/wearos/MainActivity.kt
@@ -0,0 +1,15 @@
+package com.wbrawner.pihelper.wearos
+
+import android.os.Bundle
+import android.support.wearable.activity.WearableActivity
+
+class MainActivity : WearableActivity() {
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_main)
+
+ // Enables Always-on
+ setAmbientEnabled()
+ }
+}
diff --git a/wearos/src/main/res/layout/activity_main.xml b/wearos/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..bfc5851
--- /dev/null
+++ b/wearos/src/main/res/layout/activity_main.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wearos/src/main/res/mipmap-hdpi/ic_launcher.png b/wearos/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..a571e60
Binary files /dev/null and b/wearos/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/wearos/src/main/res/mipmap-mdpi/ic_launcher.png b/wearos/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..c41dd28
Binary files /dev/null and b/wearos/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/wearos/src/main/res/mipmap-xhdpi/ic_launcher.png b/wearos/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..6dba46d
Binary files /dev/null and b/wearos/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/wearos/src/main/res/mipmap-xxhdpi/ic_launcher.png b/wearos/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..15ac681
Binary files /dev/null and b/wearos/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/wearos/src/main/res/values-round/strings.xml b/wearos/src/main/res/values-round/strings.xml
new file mode 100644
index 0000000..452e335
--- /dev/null
+++ b/wearos/src/main/res/values-round/strings.xml
@@ -0,0 +1,3 @@
+
+ Hello Round World!
+
diff --git a/wearos/src/main/res/values/dimens.xml b/wearos/src/main/res/values/dimens.xml
new file mode 100644
index 0000000..e865b41
--- /dev/null
+++ b/wearos/src/main/res/values/dimens.xml
@@ -0,0 +1,15 @@
+
+
+
+ 0dp
+
+
+ 5dp
+
diff --git a/wearos/src/main/res/values/strings.xml b/wearos/src/main/res/values/strings.xml
new file mode 100644
index 0000000..275fcee
--- /dev/null
+++ b/wearos/src/main/res/values/strings.xml
@@ -0,0 +1,9 @@
+
+ Pi-helper
+ MainActivity
+
+ Hello Square World!
+