ผู้พัฒนา:
ราคา: ฟรี
การจัดอันดับ: 0 
ความเห็น: 0 เขียนความเห็น
รายการ: 0 + 0
แต้มแล: 0 + 0 ¡
แต้มแล +1

คำอธิบาย

arduino_bt_pcs
아두이노 보드에 블루투스 모듈을 장착하고, 휴대폰에서 본 앱을 작동시켜 휴대폰과 아두이노 간에 블루투스 통신을 연결시킨 다음, 휴대폰에 구비된 여러가지 버튼을 눌러서 그 버튼의 눌러짐을 아두이노에서 인식하여 원하는 동작을 시키도록 하는 앱
- 단일 버튼 : 10개 (2개씩 쌍으로 묶어 5가지의 ON/OFF 상태 제어도 가능)
- 숫자 및 알파벳 입력 창과 이것을 아두이노로 전송하는 전송 버튼
(숫자로 속도 제어 등에 이용 가능. 문자열 및 숫자열 가능)

(각 버튼을 눌렀을 때 아두이노에 전송되는 데이터)
A ON 버튼 : a. A OFF 버튼 : A.
B ON 버튼 : b. B OFF 버튼 : B.
C ON 버튼 : c. C OFF 버튼 : C.
D ON 버튼 : d. D OFF 버튼 : D.
E ON 버튼 : e. E OFF 버튼 : E.
전송 버튼 : 왼쪽에 입력한 문자/숫자열에 .이 추가된것

* 끝에 추가되는 .을 아두이노 프로그램에서 전송의 끝으로 처리.

(아두이노에서의 프로그램 예)
아두이노의 디지털포트 5번에 연결된 LED를 A ON, A OFF 버튼으로 점멸시킴.
첫부분에 SoftwareSerial.h를 include 한다.
SoftwareSerial BT(2, 3); // 아두이노 D2(RX)는 블루투스모듈의 2번핀(TX)에,
// 아두이노 D3(TX)은 블루투스모듈의 1번핀(RX)에 연결
char inData[10];
int led1 = 5;
int i=0;

void setup() {
Serial.begin(9600); // for uno 9600
BT.begin(9600); // for uno 9600
for(int i=0; i<5; i++){
pinMode(5+i, OUTPUT);
digitalWrite(5+i, LOW);
}
}

void loop() {
while (BT.available() > 0)
{
char recieved = BT.read(); // read 1 byte
inData[i++] = recieved;
if (recieved == '.')
{
Serial.print(inData);
inData[i] = '\0'; // Clear recieved buffer
i = 0;
}
}

// LED1 on/off
if(strcmp(inData,"a.")==0)
{
digitalWrite(led1, HIGH);
}
if(strcmp(inData,"A.")==0)
{
digitalWrite(led1, LOW);
}
}
----
개발자 연락처 :
+821037569668
ขึ้น ↓

ภาพหน้าจอ

#1. arduino_bt_pcs (Android) โดย: c.s.park
#2. arduino_bt_pcs (Android) โดย: c.s.park
#3. arduino_bt_pcs (Android) โดย: c.s.park
#4. arduino_bt_pcs (Android) โดย: c.s.park
#5. arduino_bt_pcs (Android) โดย: c.s.park
#6. arduino_bt_pcs (Android) โดย: c.s.park
#7. arduino_bt_pcs (Android) โดย: c.s.park
#8. arduino_bt_pcs (Android) โดย: c.s.park
#9. arduino_bt_pcs (Android) โดย: c.s.park
#10. arduino_bt_pcs (Android) โดย: c.s.park

มีอะไรใหม่

  • เวอร์ชัน: 2.1.0
  • อัปเดต:
  • Ver 2.1.0: 2024.12.5 출시

ราคา

  • วันนี้: ฟรี
  • ต่ำสุด: ฟรี
  • มากที่สุด: ฟรี
ติดตามราคา

ผู้พัฒนา

  • c.s.park
  • แพลตฟอร์ม: Android แอป (11)
  • รายการ: 1 + 0
  • แต้มแล: 0 + 0 ¡
  • การจัดอันดับ: 0
  • ความเห็น: 0
  • ลดราคา: 0
  • วิดีโอ: 0
  • RSS: ติดตาม

แต้มแล

ไม่พบ ☹️

การจัดอันดับ

ไม่พบ ☹️

รายการ

ไม่พบ ☹️

ความเห็น

แสดงรีวิวเป็นคนแรกเลย 🌟

ข้อมูลเพิ่มเติม

รายชื่อติดต่อ

arduino_bt_pcsarduino_bt_pcs URL แบบสั้น: คัดลอกแล้ว!
  • แชร์ 👍
  • Google Play

คุณอาจชอบ

    • arduino_wifi_pcs
    • Android แอป: การศึกษา  โดย: c.s.park
    • ฟรี   
    • รายการ: 1 + 0   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 0 + 0   เวอร์ชัน: 1.3.0   아두이노 보드에 와이파이 모듈을 장착하고, 휴대폰에서 본 앱을 작동시켜 휴대폰과 아두이노 간에 와이파이 통신을 연결시킨 다음, 휴대폰에 구비된 10개의 버튼을 눌러서 그 버튼의 눌러짐을 아두이노에서 인식하여 원하는 동작을 시키도록 하는 앱 - 단일 버튼 : 10개 (각 버튼을 눌렀을 때 아두이노에 전송되는 데이터) 버튼 1 : ...
        ⥯ 
    • Arduino Science Journal
    • Android แอป: การศึกษา  โดย: Arduino
    • ฟรี   
    • รายการ: 0 + 0   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 0 + 543 (4.1)   เวอร์ชัน: 6.6.0   The Arduino Science Journal (formerly Science Journal, an initiative by Google) is free, and allows you to gather data about the world around you by harnessing the sensors in your ...
        ⥯ 
    • Arduino toolbox
    • Android แอป: การศึกษา  โดย: Arduino Factory
    • ฟรี   
    • รายการ: 0 + 0   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 1 + 11 (4.6)   เวอร์ชัน: 6.0   Vous recherchez une application pour vous aider à réaliser vos propres circuits électroniques en Arduino ? Téléchargez « Arduino Factory », cette application offre une gamme de cours ...
        ⥯ 
    • BT SCIENCE
    • Android แอป: การศึกษา  โดย: KOSH EDUTECH PVT. LTD.
    • ฟรี   
    • รายการ: 0 + 0   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 0 + 0   เวอร์ชัน: 1.41.1   BT SCIENCE is an application for aspirants of JEE Advanced (IIT), JEE Main and NEET entrance examination, In which student will get MCQ based content for Test, Class Work and Home Work
        ⥯ 
    • Arduino Pro
    • Android แอป: การศึกษา  โดย: Prince Corp
    • ฟรี   
    • รายการ: 1 + 0   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 1 + 0   เวอร์ชัน: 4.0   Absolutely, here's the extended version of the description that you can use for the Google Play Store: Are you ready to unlock the incredible world of Arduino? Look no further than ...
        ⥯ 
    • Arduino Basics
    • Android แอป: การศึกษา  โดย: Abdelaziz Sebrou
    • * ฟรี   
    • รายการ: 0 + 0   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 0 + 222 (4.3)   เวอร์ชัน: 1.0   Learn Arduino Basics with source code in a simple way and without internet Offline app (Without internet) The app covers the following topics: 1 What is Arduino 2 Installation 3 ...
        ⥯ 
    • Arduino Projects
    • Android แอป: การศึกษา  โดย: Erkosoft
    • * * ฟรี   
    • รายการ: 0 + 0   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 0 + 0   เวอร์ชัน: 19   -29 Different Sensors and 21 Different Projects!!! -English, Turkish, Spanish and Hindi language support - Sensors and projects from simple to difficult - Ability to download all the ...
        ⥯ 
    • Arduino Prime
    • Android แอป: การศึกษา  โดย: Seksan Jantawong
    • $0.99   
    • รายการ: 3 + 1   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 2 + 0   เวอร์ชัน: 0.9   Arduino Prime is an app to build skills Block programming, drag and drop, test, simulate different sensor events of Arduino to recognize input , output i2c , Analog , Digital with more
        ⥯ 
    • Arduino Tutorials - Examples
    • Android แอป: การศึกษา  โดย: Bluino
    • * * ฟรี   
    • รายการ: 0 + 0   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 0 + 1,979 (4.0)   เวอร์ชัน: 1.8   Arduino Tutorials - Examples is an Arduino tutorial with 64 examples. In this app contains ads and potentially in-app purchases, you can access content online for free at ...
        ⥯ 
    • Arduino RC Car/Tank
    • Android แอป: การศึกษา  โดย: EMMANUEL SPIRIDAKIS
    • ฟรี   
    • รายการ: 1 + 0   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 0 + 0   เวอร์ชัน: 2.0   Arduino Car Controller is an innovative Android application designed to transform your smartphone into a remote control for your Arduino-built car. This application uses Bluetooth ...
        ⥯ 
    • Arduino Course
    • Android แอป: การศึกษา  โดย: CourseTech
    • * * ฟรี   
    • รายการ: 0 + 0   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 0 + 0   เวอร์ชัน: 1.0   Arduino Course - Learn Electronics & Coding Dive into the world of electronics and programming with the Arduino Course app! Whether you're a beginner or a seasoned maker, this app ...
        ⥯ 
    • PCS Pathshala
    • Android แอป: การศึกษา  โดย: Education World Media
    • ฟรี   
    • รายการ: 0 + 0   การจัดอันดับ: 0   ความเห็น: 0
    • แต้มแล: 0 + 0   เวอร์ชัน: 1.5.3.5   PCS Pathshala is an online platform for managing data associated with its tutoring classes in the most efficient and transparent manner. It is a user-friendly app with amazing features
        ⥯ 

คุณอาจชอบ

โอเปอเรเตอร์การค้นหาที่คุณสามารถใช้กับ AppAgg
เพิ่มใน AppAgg
AppAgg
เริ่มต้นใช้งาน – ฟรี
ลงทะเบียน
ลงชื่อเข้าสู่ระบบ