이수민

최종보고서&코드

Showing 229 changed files with 2301 additions and 0 deletions
No preview for this file type
*.iml
.gradle
/local.properties
/.idea/caches/build_file_checksums.ser
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
.DS_Store
/build
/captures
.externalNativeBuild
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<Objective-C-extensions>
<file>
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Import" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Macro" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Typedef" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Enum" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Constant" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Global" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Struct" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="FunctionPredecl" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Function" />
</file>
<class>
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Property" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Synthesize" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InitMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="StaticMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InstanceMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="DeallocMethod" />
</class>
<extensions>
<pair source="cpp" header="h" fileNamingConvention="NONE" />
<pair source="c" header="h" fileNamingConvention="NONE" />
</extensions>
</Objective-C-extensions>
</code_scheme>
</component>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
<option name="resolveModulePerSourceSet" value="false" />
</GradleProjectSettings>
</option>
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="NullableNotNullManager">
<option name="myDefaultNullable" value="android.support.annotation.Nullable" />
<option name="myDefaultNotNull" value="android.support.annotation.NonNull" />
<option name="myNullables">
<value>
<list size="7">
<item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.Nullable" />
<item index="1" class="java.lang.String" itemvalue="javax.annotation.Nullable" />
<item index="2" class="java.lang.String" itemvalue="javax.annotation.CheckForNull" />
<item index="3" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.Nullable" />
<item index="4" class="java.lang.String" itemvalue="android.support.annotation.Nullable" />
<item index="5" class="java.lang.String" itemvalue="androidx.annotation.Nullable" />
<item index="6" class="java.lang.String" itemvalue="androidx.annotation.RecentlyNullable" />
</list>
</value>
</option>
<option name="myNotNulls">
<value>
<list size="6">
<item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.NotNull" />
<item index="1" class="java.lang.String" itemvalue="javax.annotation.Nonnull" />
<item index="2" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.NonNull" />
<item index="3" class="java.lang.String" itemvalue="android.support.annotation.NonNull" />
<item index="4" class="java.lang.String" itemvalue="androidx.annotation.NonNull" />
<item index="5" class="java.lang.String" itemvalue="androidx.annotation.RecentlyNonNull" />
</list>
</value>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
<option name="id" value="Android" />
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
</set>
</option>
</component>
</project>
\ No newline at end of file
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.suemin.smartlamp"
minSdkVersion 24
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.+'
implementation 'com.android.support:design:26.+'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-v4:26.1.0'
implementation 'com.android.support:recyclerview-v7:26.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
# 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
package com.example.suemin.smartlamp;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.example.suemin.smartlamp", appContext.getPackageName());
}
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.suemin.smartlamp">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-feature
android:name="android.hardware.bluetooth_le"
android:required="true" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name="com.example.suemin.smartlamp.MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".bluetooth.BluetoothLeService"/>
</application>
</manifest>
\ No newline at end of file
# Created by .ignore support plugin (hsz.mobi)
### Android template
# Built application files
*.apk
*.ap_
*.aab
# Files for the ART/Dalvik VM
*.dex
# Java class files
*.class
# Generated files
bin/
gen/
out/
release/
# Gradle files
.gradle/
build/
# Local configuration file (sdk path, etc)
local.properties
# Proguard folder generated by Eclipse
proguard/
# Log Files
*.log
# Android Studio Navigation editor temp files
.navigation/
# Android Studio captures folder
captures/
# IntelliJ
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml
# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore
# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
# Google Services (e.g. APIs or Firebase)
# google-services.json
# Freeline
freeline.py
freeline/
freeline_project_description.json
# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md
# Version control
vcs.xml
# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/
package com.example.suemin.smartlamp;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.design.widget.BottomNavigationView;
import android.support.v4.app.Fragment;
import android.support.v7.app.AppCompatActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.view.MenuItem;
import com.example.suemin.smartlamp.R;
import com.example.suemin.smartlamp.bluetooth.Bluetooth;
import com.example.suemin.smartlamp.environment.Env;
import com.example.suemin.smartlamp.home.Home;
public class MainActivity extends AppCompatActivity {
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction fragmentTransaction;
Home homeFragment = new Home();
Env envFragment = new Env();
Bluetooth bluetoothFragment = new Bluetooth();
private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener
= new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
fragmentTransaction = fragmentManager.beginTransaction();
switch (item.getItemId()) {
case R.id.navigation_home:
replaceFragment(homeFragment);
return true;
case R.id.navigation_env:
replaceFragment(envFragment);
return true;
case R.id.navigation_bt:
replaceFragment(bluetoothFragment);
return true;
}
return false;
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
fragmentTransaction = fragmentManager.beginTransaction();
fragmentTransaction.replace(R.id.frameLayout, homeFragment).commitAllowingStateLoss();
BottomNavigationView navigation = (BottomNavigationView) findViewById(R.id.navigation);
navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
}
public void replaceFragment(Fragment fragment) {
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
fragmentTransaction.replace(R.id.frameLayout, fragment).commit();
}
}
package com.example.suemin.smartlamp.bluetooth;
import java.util.HashMap;
public class LampAttributes {
private static HashMap<String, String> attributes = new HashMap();
public static String TH_SERVICE = "f7ff1200-dd52-7ca8-134d-8df9628c4659";
public static String HD_SERVICE = "91fc1400-3d67-40ec-b650-ab955d998080";
public static String RM_SERVICE = "f3122100-fcf3-46eb-aa08-513aa1a50461";
public static String CLIENT_CHARACTERISTIC_CONFIG = "00002902-0000-1000-8000-00805f9b34fb";
public static String NRF52 = "00001800-0000-1000-8000-00805f9b34fb";
public static String R_VALUE = "f3122101-fcf3-46eb-aa08-513aa1a50461";
public static String G_VALUE = "f3122102-fcf3-46eb-aa08-513aa1a50461";
public static String B_VALUE = "f3122103-fcf3-46eb-aa08-513aa1a50461";
public static String TEMP_VALUE = "f7ff1201-dd52-7ca8-134d-8df9628c4659";
public static String HUMD_VALUE = "f7ff1202-dd52-7ca8-134d-8df9628c4659";
public static String INTR_VALUE = "91fc1401-3d67-40ec-b650-ab955d998080";
static {
// ㅅㅄ
attributes.put(NRF52, "Generic Service");
attributes.put("00001801-0000-1000-8000-00805f9b34fb", "Generic Attribute service");
attributes.put(TH_SERVICE, "Temp Humid Service");
attributes.put(HD_SERVICE, "Human Detect Service");
attributes.put(RM_SERVICE, "Rgb Led Service");
attributes.put(R_VALUE, "R_VALUE");
attributes.put(G_VALUE, "G_VALUE");
attributes.put(B_VALUE, "B_VALUE");
attributes.put(TEMP_VALUE, "TEMP_VALUE");
attributes.put(HUMD_VALUE, "HUMD_VALUE");
attributes.put(INTR_VALUE, "INTR_VALUE");
}
public static String lookup(String uuid, String defaultName) {
String name = attributes.get(uuid);
return name == null ? defaultName : name;
}
}
\ No newline at end of file
package com.example.suemin.smartlamp.bluetooth;
import android.content.Context;
import static com.example.suemin.smartlamp.bluetooth.Bluetooth.TurnOnLamp;
public class SensorResult {
static Context mcontext = null;
public static int intr, humd, temp =0 ;
public static int ppnum = 0;
public SensorResult(Context context){
this.mcontext=context;
}
public static void saveData(int data, int uuid){
switch (uuid){
case 4:
temp = data;
break;
case 5:
humd = data;
if(temp != 0){
stateTHI();
}
break;
case 6:
intr = data;
checkPeople(intr);
break;
}
}
private static void checkPeople(int intr){
if(intr == 0) {
if (ppnum > 10) {
ppnum = 0;
TurnOnLamp(0,0,0);
} else {
ppnum++;
}
}
}
public static double getTHI() {
if(humd ==0 || temp ==0){return 0;}
double value = ((temp+humd)*0.7 +40.6);
return value;
}
public static void stateTHI(){
double v = getTHI();
if(68 <= v && v <75 ){
TurnOnLamp(0,90,150);
}
else if(75<= v && v <80){
TurnOnLamp(0,120,200);
}
else if(v>=80){
TurnOnLamp(0,150,250);
}
}
}
package com.example.suemin.smartlamp.environment;
import android.content.Context;
import android.graphics.drawable.ColorDrawable;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.content.ContextCompat;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ListView;
import android.widget.Toast;
import com.example.suemin.smartlamp.R;
import com.example.suemin.smartlamp.bluetooth.Bluetooth;
import com.example.suemin.smartlamp.environment.listview.CustomDialog;
import com.example.suemin.smartlamp.environment.listview.ListViewAdapter;
public class Env extends Fragment {
private CustomDialog customDialog;
public Env() {
// Required empty public constructor
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
public void setListView(View view) {
ListViewAdapter adapter = new ListViewAdapter();
ListView listView = (ListView) view.findViewById(R.id.list);
listView.setAdapter(adapter);
adapter.addItem("휴식", ContextCompat.getDrawable(this.getContext(), R.drawable.sleep));
adapter.addItem("TV 시청", ContextCompat.getDrawable(this.getContext(), R.drawable.television));
adapter.addItem("독서 / 공부", ContextCompat.getDrawable(this.getContext(), R.drawable.book));
adapter.addItem("식사", ContextCompat.getDrawable(this.getContext(), R.drawable.dinner));
listView.setOnItemClickListener(listItemClickListener);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_env, container, false);
setListView(view);
return view;
}
private AdapterView.OnItemClickListener listItemClickListener= new AdapterView.OnItemClickListener(){
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
customDialog = new CustomDialog(getActivity(), positiveListener);
customDialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
customDialog.show();
customDialog.setText(position);
}
};
private View.OnClickListener positiveListener = new View.OnClickListener() {
public void onClick(View v) {
Log.d("실내활동","onClick: " + customDialog.mode);
Bluetooth.changeIndoorMode(customDialog.mode);
Toast.makeText(getActivity(), "변경되었습니다", Toast.LENGTH_SHORT).show();
customDialog.dismiss();
}
};
@Override
public void onAttach(Context context) {
super.onAttach(context);
}
@Override
public void onDetach() {
super.onDetach();
}
@Override
public void onDestroy() {
super.onDestroy();
}
}
package com.example.suemin.smartlamp.environment.listview;
import android.app.Dialog;
import android.content.Context;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.TextView;
import com.example.suemin.smartlamp.R;
public class CustomDialog extends Dialog {
private Button mPositiveButton;
private View.OnClickListener mPositiveListener;
private TextView AlertTitle, AlertMode, AlertText;
public int mode;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();
layoutParams.flags = WindowManager.LayoutParams.FLAG_DIM_BEHIND;
layoutParams.dimAmount = 0.8f;
getWindow().setAttributes(layoutParams);
setContentView(R.layout.custom_dialog);
mPositiveButton=(Button)findViewById(R.id.pbutton);
mPositiveButton.setOnClickListener(mPositiveListener);
AlertTitle = (TextView) findViewById(R.id.dialog_title);
AlertMode = (TextView) findViewById(R.id.dialog_num);
AlertText = (TextView) findViewById(R.id.dialog_state);
}
public CustomDialog(@NonNull Context context, View.OnClickListener positiveListener) {
super(context);
this.mPositiveListener = positiveListener;
}
public boolean setText(int position)
{
mode = position;
switch (position) {
case 0:
AlertTitle.setText("휴식");
AlertMode.setText("모드로");
AlertText.setText("변경하시겠습니까 ?");
break;
case 1:
AlertTitle.setText("TV 시청");
AlertMode.setText("모드로");
AlertText.setText("변경하시겠습니까 ?");
break;
case 2:
AlertTitle.setText("독서 / 공부");
AlertMode.setText("모드로");
AlertText.setText("변경하시겠습니까 ?");
break;
case 3:
AlertTitle.setText("식사");
AlertMode.setText("모드로");
AlertText.setText("변경하시겠습니까 ?");
break;
}
return true;
}
}
package com.example.suemin.smartlamp.environment.listview;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import com.example.suemin.smartlamp.R;
import java.util.ArrayList;
public class ListViewAdapter extends BaseAdapter {
private ArrayList<ListViewItem> listViewItemList= new ArrayList<ListViewItem>();
public ListViewAdapter(){}
@Override
public int getCount() {
return listViewItemList.size();
}
@Override
public Object getItem(int position) {
return listViewItemList.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
final int pos = position;
final Context context = parent.getContext();
if(convertView == null){
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.listview_item, parent, false);
}
TextView titleTextView = (TextView) convertView.findViewById(R.id.textView1);
ImageView iconImageView = (ImageView) convertView.findViewById(R.id.imageView1);
ListViewItem listViewItem = listViewItemList.get(position);
titleTextView.setText(listViewItem.getTitle());
iconImageView.setImageDrawable(listViewItem.getIcon());
return convertView;
}
public void addItem(String title, Drawable icon){
ListViewItem item = new ListViewItem();
item.setTitle(title);
item.setIcon(icon);
listViewItemList.add(item);
}
}
package com.example.suemin.smartlamp.environment.listview;
import android.graphics.drawable.Drawable;
public class ListViewItem {
private String titleStr ;
private Drawable iconDrawable ;
public void setIcon(Drawable icon) {
iconDrawable = icon ;
}
public void setTitle(String title) {
titleStr = title ;
}
public Drawable getIcon() {
return this.iconDrawable ;
}
public String getTitle() {
return this.titleStr ;
}
}
package com.example.suemin.smartlamp.home;
import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CompoundButton;
import android.widget.ImageView;
import android.widget.Switch;
import android.widget.TextView;
import com.example.suemin.smartlamp.R;
import com.example.suemin.smartlamp.bluetooth.Bluetooth;
import static com.example.suemin.smartlamp.bluetooth.SensorResult.stateTHI;
public class Home extends Fragment {
public static boolean LampON = false;
public Home() {
// Required empty public constructor
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_home, container, false);
final TextView optionState= (TextView) view.findViewById(R.id.textView_switch);
final ImageView imgState = (ImageView) view.findViewById(R.id.imageView2);
Switch sw = (Switch) view.findViewById(R.id.switch1);
sw.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
optionState.setText(" ON ");
imgState.setImageResource(R.drawable.streetlight);
if (!LampON) {
Bluetooth.TurnOnLamp(200,250,0);
LampON = true;
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
stateTHI();
}
} else {
optionState.setText(" OFF ");
imgState.setImageResource(R.drawable.streetlight1);
if(LampON) {
Bluetooth.TurnOnLamp(0,0,0);
}
}
}
});
return view;
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
}
@Override
public void onDetach() {
super.onDetach();
}
}
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillType="evenOdd"
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
android:strokeWidth="1"
android:strokeColor="#00000000">
<aapt:attr name="android:fillColor">
<gradient
android:endX="78.5885"
android:endY="90.9159"
android:startX="48.7653"
android:startY="61.0927"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp"
android:shape="rectangle" >
<solid android:color="@color/colorPrimary" />
<gradient
android:startColor="@color/colorPrimary"
android:endColor="#FFFFFF"
android:angle= "270">
</gradient>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp"
android:shape="rectangle"
>
<solid android:color="#FFFFFF"></solid>
<corners
android:bottomLeftRadius="30dp"
android:bottomRightRadius="30dp"
android:topLeftRadius="30dp"
android:topRightRadius="30dp" />
<stroke
android:width="2dp"
android:color="@color/colorPrimaryDark" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp"
android:shape="rectangle" >
<solid android:color="@color/colorPrimaryDark" />
<corners
android:bottomLeftRadius="20dp"
android:bottomRightRadius="20dp"
android:topLeftRadius="20dp"
android:topRightRadius="20dp" />
<stroke
android:width="1dp"
android:color="@color/colorPrimaryDark" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp"
android:shape="rectangle"
>
<corners
android:bottomLeftRadius="30dp"
android:bottomRightRadius="30dp"
android:topLeftRadius="30dp"
android:topRightRadius="30dp" />
</shape>
\ No newline at end of file
<vector android:height="24dp" android:tint="#3A73C0"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
>
<group
android:name="rotationGroup"
android:pivotX="12"
android:pivotY="12"
android:rotation= "90">
<path android:fillAlpha=".3" android:fillColor="#3a73c0" android:pathData="M17,5.33C17,4.6 16.4,4 15.67,4H14V2h-4v2H8.33C7.6,4 7,4.6 7,5.33V8h10V5.33z"/>
<path android:fillColor="#3a73c0" android:pathData="M7,8v12.67C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33V8H7z"/>
</group>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="20dp"
android:height="20dp"
android:viewportWidth="27.0"
android:viewportHeight="27.0">
<path
android:fillColor="@color/colorAccent"
android:pathData="M17.71,7.71L12,2h-1v7.59L6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 11,14.41L11,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,5.83l1.88,1.88L13,9.59L13,5.83zM14.88,16.29L13,18.17v-3.76l1.88,1.88z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="30dp"
android:height="30dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#3a73c0"
android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4 9.11,4 6.6,5.64 5.35,8.04 2.34,8.36 0,10.91 0,14c0,3.31 2.69,6 6,6h13c2.76,0 5,-2.24 5,-5 0,-2.64 -2.05,-4.78 -4.65,-4.96zM19,18H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h0.71C7.37,7.69 9.48,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3s-1.34,3 -3,3z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M10,20v-6h4v6h5v-8h3L12,3 2,12h3v8z" />
</vector>
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#008577"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
android:viewportWidth="480.011"
android:viewportHeight="480.011"
android:width="512dp"
android:height="512dp">
<path
android:pathData="M440.03 216.004c-14.362 -0.012 -26.964 -9.572 -30.844 -23.4 -10.301 -36.573 -32.069 -68.873 -62.1 -92.15 -63.11 -48.595 -151.033 -48.595 -214.143 0 -12.083 9.329 -22.896 20.195 -32.164 32.325l66.2 -19.471c16.955 -4.987 34.742 4.716 39.729 21.671s-4.716 34.742 -21.671 39.729l-135.994 40c-16.955 4.986 -34.742 -4.717 -39.728 -21.672 -0.694 -2.362 -1.114 -4.795 -1.251 -7.253l-8 -144c-1.104 -17.639 12.301 -32.832 29.939 -33.935s32.832 12.301 33.935 29.94c0.009 0.149 0.018 0.298 0.025 0.448l2.045 36.805c84.413 -89.396 222.822 -100.304 320.196 -25.237 40.928 31.727 70.593 75.753 84.629 125.6 4.75 17.023 -5.2 34.673 -22.223 39.423 -2.793 0.779 -5.678 1.175 -8.577 1.177zm-408.017 -192c-0.3 0 -0.593 0.009 -0.893 0.025 -8.816 0.503 -15.562 8.046 -15.082 16.863l8 144c0.491 8.823 8.041 15.577 16.864 15.087 1.228 -0.068 2.443 -0.278 3.623 -0.625l136 -40c8.478 -2.493 13.329 -11.387 10.835 -19.865s-11.387 -13.329 -19.865 -10.835l-87.453 25.722c-4.239 1.247 -8.686 -1.179 -9.932 -5.418 -0.624 -2.123 -0.342 -4.409 0.781 -6.316 12.433 -21.203 28.818 -39.824 48.268 -54.853l4.89 6.331 -4.89 -6.331c68.87 -53.045 164.83 -53.045 233.7 0 32.758 25.389 56.502 60.622 67.738 100.515 2.375 8.512 11.2 13.487 19.712 11.112s13.487 -11.2 11.112 -19.712c-13.103 -46.531 -40.794 -87.627 -79 -117.243 -80.393 -61.945 -192.431 -61.945 -272.824 0 -14.208 10.994 -27.043 23.658 -38.227 37.717 -2.753 3.456 -7.786 4.026 -11.242 1.273 -1.784 -1.421 -2.877 -3.536 -3.003 -5.814l-3.14 -56.523c-0.484 -8.471 -7.488 -15.096 -15.972 -15.11z"
android:fillColor="@color/colorAccent" />
<path
android:pathData="M240.013 480.004c-52.923 0.184 -104.385 -17.344 -146.193 -49.793 -40.928 -31.726 -70.592 -75.751 -84.627 -125.597 -4.689 -17.04 5.323 -34.654 22.363 -39.343 16.957 -4.666 34.501 5.226 39.284 22.15 10.301 36.571 32.069 68.869 62.1 92.143 76.608 59.134 186.648 44.969 245.782 -31.639 0.176 -0.228 0.351 -0.456 0.526 -0.685l-66.2 19.471c-16.882 5.23 -34.806 -4.216 -40.036 -21.098s4.216 -34.806 21.098 -40.036c0.292 -0.091 0.586 -0.177 0.881 -0.259l135.993 -40c16.955 -4.986 34.742 4.716 39.728 21.672 0.694 2.361 1.114 4.794 1.251 7.25l8 143.989c0.959 17.637 -12.54 32.723 -30.175 33.722 -0.6 0.034 -1.2 0.051 -1.8 0.051 -16.975 -0.012 -30.986 -13.276 -31.928 -30.225l-2.045 -36.8c-45.149 47.968 -108.129 75.124 -174.002 75.027zm-200.008 -199.985c-8.837 0.006 -15.995 7.175 -15.989 16.011 0.001 1.45 0.199 2.892 0.589 4.289 13.103 46.528 40.794 87.622 79 117.235 80.395 61.94 192.43 61.94 272.825 0 14.208 -10.994 27.042 -23.656 38.227 -37.714 2.753 -3.456 7.786 -4.026 11.242 -1.273 1.784 1.421 2.876 3.536 3.003 5.813l3.14 56.518c0.547 8.82 8.141 15.526 16.96 14.978 8.739 -0.542 15.419 -8.009 14.99 -16.754l-8 -143.988c-0.491 -8.823 -8.042 -15.577 -16.865 -15.086 -1.228 0.068 -2.444 0.278 -3.623 0.625l-135.995 40c-8.483 2.476 -13.352 11.359 -10.876 19.842s11.359 13.352 19.842 10.876c0.021 -0.006 0.041 -0.012 0.062 -0.018l87.449 -25.719c4.239 -1.247 8.686 1.178 9.933 5.416 0.625 2.123 0.342 4.411 -0.781 6.318 -12.433 21.202 -28.818 39.821 -48.268 54.848 -68.871 53.043 -164.829 53.043 -233.7 0 -32.755 -25.385 -56.498 -60.613 -67.735 -100.5 -1.936 -6.923 -8.242 -11.712 -15.43 -11.717z"
android:fillColor="@color/colorAccent" />
</vector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp"
android:shape="rectangle"
>
<corners
android:bottomLeftRadius="30dp"
android:bottomRightRadius="30dp"
android:topLeftRadius="30dp"
android:topRightRadius="30dp" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
<font
android:fontStyle = "normal"
android:fontWeight="400"
android:font = "@font/noto"/>
<font
android:fontStyle = "normal"
android:fontWeight = "400"
android:font = "@font/beba"/>
</font-family>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.suemin.smartlamp.MainActivity"
>
<android.support.v7.widget.Toolbar
android:id="@+id/tb"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimaryDark">
<ImageView
android:layout_width="32dp"
android:layout_height="30dp"
android:src="@drawable/lamp"
android:paddingTop="8dp"
android:layout_marginRight="5dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="left"
android:text="@string/app_name"
android:fontFamily="@font/beba"
android:textColor="@color/colorAccent"
android:textSize="21dp"
android:textStyle="bold"
/>
</android.support.v7.widget.Toolbar>
<FrameLayout
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize"
android:layout_marginBottom="?attr/actionBarSize"
/>
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="0dp"
android:layout_marginEnd="0dp"
android:background="@color/colorPrimaryDark"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />
</android.support.constraint.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/bt_textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:gravity="left"
android:text="name"
android:textColor="@color/colorAccent"
android:fontFamily="@font/noto"
android:textSize="21dp"
/>
<TextView
android:id="@+id/bt_textView_addr"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:gravity="left"
android:text="addr"
android:textColor="@color/colorAccent"
android:textSize="14dp"
android:layout_below="@+id/bt_textView"
/>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
>
<LinearLayout
android:layout_width="250dp"
android:layout_height="wrap_content"
android:paddingBottom="15dp"
android:paddingTop="15dp"
android:gravity="center"
android:orientation="vertical"
android:background="@drawable/dialog_background">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:id="@+id/dialog_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:textStyle="bold"
android:textSize="24dp" />
<TextView
android:id="@+id/dialog_num"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:textSize="20dp" />
</LinearLayout>
<TextView
android:id="@+id/dialog_state"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="15dp"
android:textSize="20dp" />
<Button
android:id="@+id/pbutton"
android:layout_width="50dp"
android:layout_height="25dp"
android:layout_marginBottom="10dp"
android:background="@drawable/dialog_button_background"
android:text="OK"
android:textColor="@color/colorAccent"/>
</LinearLayout>
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.suemin.smartlamp.bluetooth.Bluetooth"
android:background="@color/colorPrimaryDark">
<TextView
android:layout_width="wrap_content"
android:layout_height="22dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:text="검색된 기기"
android:textSize="12dp"
android:textStyle="bold"
android:textColor="#a04e4e4e"/>
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="24dp">
</ListView>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="60dp"
android:layout_gravity="bottom"
android:paddingBottom="15dp">
<Button
android:id="@+id/bt_find_btn"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_marginRight="20dp"
android:background="@drawable/sync"
/>
</RelativeLayout>
</FrameLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="com.example.suemin.smartlamp.environment.Env"
android:background="@color/colorPrimaryDark">
<ListView
android:id="@+id/list"
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</FrameLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="com.example.suemin.smartlamp.home.Home"
android:background="@color/colorPrimaryDark">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView2"
android:layout_width="197dp"
android:layout_height="190dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="120dp"
android:layout_marginBottom="50dp"
android:adjustViewBounds="true"
android:src="@drawable/streetlight1" />
<RelativeLayout
android:id="@+id/rl1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/imageView2"
android:layout_centerHorizontal="true"
android:gravity="center">
<Switch
android:id="@+id/switch1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp" />
<TextView
android:id="@+id/textView_switch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/switch1"
android:fontFamily="@font/noto"
android:text=" OFF "
android:textColor="@color/colorDeep"
android:textSize="25dp"
android:textStyle="bold" />
</RelativeLayout>
</RelativeLayout>
</FrameLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="start">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="25dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:gravity="fill_horizontal"
android:fontFamily="@font/noto"
android:text="New Text"
android:layout_toRightOf="@id/imageView1"
android:textColor="@color/colorAccent"
android:textSize="21dp" />
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:id="@+id/imageView1"
android:layout_marginLeft="15dp"
android:layout_centerVertical="true"
android:src="@drawable/ic_cloud_queue_black_24dp"
/>
</RelativeLayout>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/navigation_bt"
android:title="BT"
android:icon="@drawable/television"
app:showAsAction="always"
/>
</menu>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/navigation_home"
android:icon="@drawable/ic_home_black_24dp"
android:title="@string/title_home"
/>
<item
android:id="@+id/navigation_env"
android:icon="@drawable/ic_cloud_queue_black_24dp"
android:title="@string/title_activity_main2" />
<item
android:id="@+id/navigation_bt"
android:icon="@drawable/ic_bluetooth_black_24dp"
android:title="@string/title_activity_main33" />
</menu>
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#000000</color>
<color name="colorPrimaryDark">#788f91ff</color>
<color name="colorAccent">#f0646a71</color>
<color name="colorDeep">#d84c4d89</color>
</resources>
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<dimen name="text_margin">16dp</dimen>
</resources>
<resources>
<string name="app_name">SMART LAMP</string>
<string name="title_home">Home</string>
<string name="title_activity_main2">Activity</string>
<string name="title_activity_main33">Bluetooth</string>
<string name="connected">Connected</string>
<string name="disconnected">Disconnected</string>
<string name="addr_m">90:E2:02:8F:36:70</string>
<string name="addr_d">90:E2:02:8E:1F:21</string>
<string name="addr_r">90:E2:02:92:A9:0E</string>
<string name="unknown_characteristic">Unknown characteristic</string>
<string name="unknown_service">Unknown service</string>
</resources>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
package com.example.suemin.smartlamp;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
}
\ No newline at end of file
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
#!/usr/bin/env sh
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn () {
echo "$*"
}
die () {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=$((i+1))
done
case $i in
(0) set -- ;;
(1) set -- "$args0" ;;
(2) set -- "$args0" "$args1" ;;
(3) set -- "$args0" "$args1" "$args2" ;;
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=$(save "$@")
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
cd "$(dirname "$0")"
fi
exec "$JAVACMD" "$@"
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windows variants
if not "%OS%" == "Windows_NT" goto win9xME_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
Output/Debug/Obj/ble_app_blinky_pca10056_s140/SEGGER_RTT.o: \
C:\nrf\nRF5SDK160098a08e2\external\segger_rtt\SEGGER_RTT.c \
C:\nrf\nRF5SDK160098a08e2\external\segger_rtt\SEGGER_RTT.h \
C:\nrf\nRF5SDK160098a08e2\external\segger_rtt\SEGGER_RTT_Conf.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util_platform.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdint.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cm4.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmInstr.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/cmsis_gcc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmFunc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmSimd.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840_bitfields.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf51_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_nvic.h \
../../nRF5SDK160098a08e2/components/libraries/util/nrf_assert.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdio.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__crossworks.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdbool.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_errors.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error_weak.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_config.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/string.h
Output/Debug/Obj/ble_app_blinky_pca10056_s140/SEGGER_RTT_Syscalls_SES.o: \
C:\nrf\nRF5SDK160098a08e2\external\segger_rtt\SEGGER_RTT_Syscalls_SES.c \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_config.h \
C:\nrf\nRF5SDK160098a08e2\external\segger_rtt\SEGGER_RTT.h \
C:\nrf\nRF5SDK160098a08e2\external\segger_rtt\SEGGER_RTT_Conf.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util_platform.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdint.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cm4.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmInstr.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/cmsis_gcc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmFunc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmSimd.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840_bitfields.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf51_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_nvic.h \
../../nRF5SDK160098a08e2/components/libraries/util/nrf_assert.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdio.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__crossworks.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdbool.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_errors.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error_weak.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdarg.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/limits.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__libc.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__vfprintf.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__argtype.h
Output/Debug/Obj/ble_app_blinky_pca10056_s140/SEGGER_RTT_printf.o: \
C:\nrf\nRF5SDK160098a08e2\external\segger_rtt\SEGGER_RTT_printf.c \
C:\nrf\nRF5SDK160098a08e2\external\segger_rtt\SEGGER_RTT.h \
C:\nrf\nRF5SDK160098a08e2\external\segger_rtt\SEGGER_RTT_Conf.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util_platform.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdint.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cm4.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmInstr.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/cmsis_gcc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmFunc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmSimd.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840_bitfields.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf51_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_nvic.h \
../../nRF5SDK160098a08e2/components/libraries/util/nrf_assert.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdio.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__crossworks.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdbool.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_errors.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error_weak.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_config.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdlib.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdarg.h
Output/Debug/Obj/ble_app_blinky_pca10056_s140/app_button.o: \
C:\nrf\nRF5SDK160098a08e2\components\libraries\button\app_button.c \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_common.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdint.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdbool.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/string.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__crossworks.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_config.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_os.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_errors.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stddef.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cm4.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmInstr.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/cmsis_gcc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmFunc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmSimd.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840_bitfields.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf51_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf52/nrf_mbr.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_macros.h \
../../nRF5SDK160098a08e2/components/libraries/util/nrf_assert.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\button\app_button.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdio.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error_weak.h \
../../nRF5SDK160098a08e2/modules/nrfx/hal/nrf_gpio.h \
../../nRF5SDK160098a08e2/modules/nrfx/nrfx.h \
../../nRF5SDK160098a08e2/integration/nrfx/nrfx_config.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_config.h \
../../nRF5SDK160098a08e2/modules/nrfx/drivers/nrfx_common.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf_peripherals.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840_peripherals.h \
../../nRF5SDK160098a08e2/integration/nrfx/nrfx_glue.h \
../../nRF5SDK160098a08e2/integration/nrfx/legacy/apply_old_config.h \
../../nRF5SDK160098a08e2/modules/nrfx/soc/nrfx_irqs.h \
../../nRF5SDK160098a08e2/modules/nrfx/soc/nrfx_irqs_nrf52840.h \
../../nRF5SDK160098a08e2/components/libraries/util/nrf_assert.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util_platform.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_nvic.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error.h \
../../nRF5SDK160098a08e2/modules/nrfx/soc/nrfx_coredep.h \
../../nRF5SDK160098a08e2/modules/nrfx/soc/nrfx_atomic.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_errors.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_resources.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_sd_def.h \
../../nRF5SDK160098a08e2/modules/nrfx/drivers/nrfx_errors.h \
../../nRF5SDK160098a08e2/components/libraries/timer/app_timer.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log_instance.h \
../../nRF5SDK160098a08e2/components/libraries/experimental_section_vars/nrf_section.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log_types.h \
../../nRF5SDK160098a08e2/components/libraries/sortlist/nrf_sortlist.h \
../../nRF5SDK160098a08e2/integration/nrfx/legacy/nrf_drv_gpiote.h \
../../nRF5SDK160098a08e2/modules/nrfx/drivers/include/nrfx_gpiote.h \
../../nRF5SDK160098a08e2/modules/nrfx/hal/nrf_gpiote.h \
../../nRF5SDK160098a08e2/modules/nrfx/hal/nrf_gpio.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log.h \
../../nRF5SDK160098a08e2/components/libraries/strerror/nrf_strerror.h \
../../nRF5SDK160098a08e2/components/libraries/log/src/nrf_log_internal.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log_types.h
Output/Debug/Obj/ble_app_blinky_pca10056_s140/app_error.o: \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\app_error.c \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cm4.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdint.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmInstr.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/cmsis_gcc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmFunc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmSimd.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840_bitfields.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf51_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdio.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__crossworks.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\app_error.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdbool.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\sdk_errors.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\nordic_common.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\app_error_weak.h
Output/Debug/Obj/ble_app_blinky_pca10056_s140/app_error_handler_gcc.o: \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\app_error_handler_gcc.c \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\sdk_common.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdint.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdbool.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/string.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__crossworks.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\sdk_config.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\nordic_common.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\sdk_os.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\sdk_errors.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\app_util.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stddef.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cm4.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmInstr.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/cmsis_gcc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmFunc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmSimd.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840_bitfields.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf51_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf52/nrf_mbr.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\sdk_macros.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\nrf_assert.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\app_error.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdio.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\app_error_weak.h
Output/Debug/Obj/ble_app_blinky_pca10056_s140/app_error_weak.o: \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\app_error_weak.c \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\app_error.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdint.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdio.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__crossworks.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdbool.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cm4.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmInstr.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/cmsis_gcc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmFunc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmSimd.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840_bitfields.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf51_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\sdk_errors.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\nordic_common.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\app_error_weak.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_common.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/string.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_config.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_os.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_errors.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stddef.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf52/nrf_mbr.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_macros.h \
../../nRF5SDK160098a08e2/components/libraries/util/nrf_assert.h \
../../nRF5SDK160098a08e2/components/libraries/experimental_section_vars/nrf_section.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/components/libraries/strerror/nrf_strerror.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_errors.h \
../../nRF5SDK160098a08e2/components/libraries/log/src/nrf_log_internal.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log_instance.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_config.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log_types.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log_types.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log_ctrl.h \
../../nRF5SDK160098a08e2/components/libraries/log/src/nrf_log_ctrl_internal.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log_backend_interface.h \
../../nRF5SDK160098a08e2/components/libraries/memobj/nrf_memobj.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdlib.h \
../../nRF5SDK160098a08e2/components/libraries/balloc/nrf_balloc.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util_platform.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_nvic.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\util\app_util_platform.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_sdm.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error_sdm.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_soc.h
Output/Debug/Obj/ble_app_blinky_pca10056_s140/app_scheduler.o: \
C:\nrf\nRF5SDK160098a08e2\components\libraries\scheduler\app_scheduler.c \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_common.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdint.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdbool.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/string.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__crossworks.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_config.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_os.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_errors.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stddef.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cm4.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmInstr.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/cmsis_gcc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmFunc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmSimd.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840_bitfields.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf51_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf52/nrf_mbr.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_macros.h \
../../nRF5SDK160098a08e2/components/libraries/util/nrf_assert.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\scheduler\app_scheduler.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_config.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdio.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error_weak.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdlib.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error_soc.h \
../../nRF5SDK160098a08e2/components/libraries/util/nrf_assert.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util_platform.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_nvic.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error.h
Output/Debug/Obj/ble_app_blinky_pca10056_s140/app_timer2.o: \
C:\nrf\nRF5SDK160098a08e2\components\libraries\timer\app_timer2.c \
C:\nrf\nRF5SDK160098a08e2\components\libraries\timer\app_timer.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_config.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdint.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdio.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/__crossworks.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stdbool.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cm4.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmInstr.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/cmsis_gcc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmFunc.h \
../../nRF5SDK160098a08e2/components/toolchain/cmsis/include/core_cmSimd.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/system_nrf.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840_bitfields.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf51_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52_to_nrf52840.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_errors.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error_weak.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/stddef.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/compiler_abstraction.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf52/nrf_mbr.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
../../nRF5SDK160098a08e2/components/libraries/util/nordic_common.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log_instance.h \
../../nRF5SDK160098a08e2/components/libraries/experimental_section_vars/nrf_section.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log_types.h \
../../nRF5SDK160098a08e2/components/libraries/sortlist/nrf_sortlist.h \
../../nRF5SDK160098a08e2/components/libraries/atomic_fifo/nrf_atfifo.h \
../../nRF5SDK160098a08e2/components/libraries/util/nrf_assert.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_errors.h \
../../nRF5SDK160098a08e2/components/libraries/delay/nrf_delay.h \
../../nRF5SDK160098a08e2/modules/nrfx/nrfx.h \
../../nRF5SDK160098a08e2/integration/nrfx/nrfx_config.h \
../../nRF5SDK160098a08e2/modules/nrfx/drivers/nrfx_common.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf_peripherals.h \
../../nRF5SDK160098a08e2/modules/nrfx/mdk/nrf52840_peripherals.h \
../../nRF5SDK160098a08e2/integration/nrfx/nrfx_glue.h \
../../nRF5SDK160098a08e2/integration/nrfx/legacy/apply_old_config.h \
../../nRF5SDK160098a08e2/modules/nrfx/soc/nrfx_irqs.h \
../../nRF5SDK160098a08e2/modules/nrfx/soc/nrfx_irqs_nrf52840.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util_platform.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_svc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_error_soc.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_nvic.h \
../../nRF5SDK160098a08e2/components/libraries/util/nrf_assert.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_error.h \
../../nRF5SDK160098a08e2/modules/nrfx/soc/nrfx_coredep.h \
../../nRF5SDK160098a08e2/modules/nrfx/soc/nrfx_atomic.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_resources.h \
../../nRF5SDK160098a08e2/components/softdevice/s140/headers/nrf_sd_def.h \
../../nRF5SDK160098a08e2/modules/nrfx/drivers/nrfx_errors.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_common.h \
C:/Program\ Files/SEGGER/SEGGER\ Embedded\ Studio\ for\ ARM\ 5.10b/include/string.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_config.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_os.h \
../../nRF5SDK160098a08e2/components/libraries/util/app_util.h \
../../nRF5SDK160098a08e2/components/libraries/util/sdk_macros.h \
../../nRF5SDK160098a08e2/components/libraries/strerror/nrf_strerror.h \
../../nRF5SDK160098a08e2/components/libraries/log/src/nrf_log_internal.h \
../../nRF5SDK160098a08e2/components/libraries/log/nrf_log_types.h \
C:\nrf\nRF5SDK160098a08e2\components\libraries\timer\drv_rtc.h \
../../nRF5SDK160098a08e2/modules/nrfx/hal/nrf_rtc.h
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.