홈IOT음성인식_브로스 Application icon

홈IOT음성인식_브로스 1.0

2.8 MB / 0+ Downloads / Rating 5.0 - 1 reviews


See previous versions

홈IOT음성인식_브로스, developed and published by seol kum sook, has released its latest version, 1.0, on 2018-07-05. This app falls under the Education category on the Google Play Store and has achieved over 10 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

홈IOT음성인식_브로스 APK available on this page is compatible with all Android devices that meet the required specifications (Android 2.1+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: appinventor.ai_snow337.iot_1_3

Updated: 7 years ago

Developer Name: seol kum sook

Category: Education

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing 홈IOT음성인식_브로스 on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

Previous Versions

홈IOT음성인식_브로스 1.0
2018-07-05 / 2.8 MB / Android 2.1+

About this app

만든이: 부천공업고등학교 IT전자과 박건호
앱 개발 동아리 시간에 만들었습니다.
동영상 https://goo.gl/eGpRM2
음성인식 사용 IOT앱 case 10까지 사용가능 합니다.
=================================
-음성가능 명령어-
전체 불 켜(case 1) 전체 불 꺼(case 2)
1층 불 켜 (case 3) 1층 불 꺼(case 4)
2층 불 켜 (case 5) 2층 불 꺼(case 6)
TV 켜 (case 7) TV꺼 (case 8)
선풍기 켜 (case 9) 선풍기 꺼(case 10)


-앱 전용 코딩 (예시)-
#include
SoftwareSerial BT_Serial(2, 3);

int led1 = (지정); //1층
int led2 = (지정); //2층
int TV = (지정); //텔레비전
int fan = (지정); //선풍기
int r_data;
void setup() {
BT_Serial.begin(9600);
pinMode(fan, OUTPUT); //선풍기
pinMode(led1, OUTPUT); //1층
pinMode(led2, OUTPUT); //2층
pinMode(TV, OUTPUT); //텔레비전
}
void loop() {
r_data = BT_Serial.read();
switch(r_data) {

case 1: //모든 불 키기
digitalWrite(led1, HIGH);
digitalWrite(led2, HIGH);
digitalWrite(TV, HIGH);
break;

case 2: //모든 불 끄기
digitalWrite(led1, LOW);
digitalWrite(led2, LOW);
digitalWrite(TV, LOW);
break;

case 3: // 1층 불 키기
digitalWrite(led1, HIGH);
break;

case 4: // 1층 불 끄기
digitalWrite(led1, LOW);
break;

case 5: // 2층 불 키기
digitalWrite(led2, HIGH);
break;

case 6: // 2층 불 끄기
digitalWrite(led2, LOW);
break;

case 7: // TV 키기
digitalWrite(TV, HIGH);
break;

case 8: // TV 끄기
digitalWrite(TV, LOW);
break;

case 9: // 선풍기 킴
digitalWrite(fan, HIGH);
break;

case 10: // 선풍기끔
digitalWrite(fan, LOW);
break;
}
}

App Permissions

Allows applications to connect to paired bluetooth devices.
Allows applications to open network sockets.
Allows access to the vibrator.
Allows applications to access information about Wi-Fi networks.
Allows applications to discover and pair bluetooth devices.
Allows applications to access information about networks.