사용자 환경을 개선하기 위해 이 웹 사이트의 쿠키 및 기타 기술을 사용합니다.
이 페이지의 링크를 클릭하면 당사의 개인 정보 보호 정책쿠키 정책에 동의하는 것입니다.
동의함 더 알아보기

ArduTooth 정보

Receive Arduino Sensor-Data directly on your Smartphone via Bluetooth!

The easiest way to visualize Arduino Sensor-Data directly on your Android-Device in REALTIME! The App is able to display the values of up to 6 Sensors simultaneously.

Only required is to load some Code to your Arduino-Board, wire a Bluetooth-Module (like the HC-05) to the Arduino and couple Android-Device and Bluetooth-Module in the System-Preferences.

The App will establish a wireless Bluetooth-Serial-Connection between Arduino and Smartphone.

Requirements:

-Arduino

-Bluetooth-Modul (HC-05, HC-06, ...)

The Bluetooth-Module has to be wired as shown at the labeling of the Module (Caution: HC-05 TX has to be wired to Arduino Pin 10 (RX), HC-05 RX has to be wired to Arduino Pin 11(TX)).

The following Code needs to be uploaded to the Arduino-Board:

/*Developer: Frederik Hauke

Important Notices:

This Arduino-Code is written for Visualizating measurement data from a microcontroller via Bluetooth.

Before starting this application, the Bluetooth-Modul (HC-05) has to be coupled to the Smartphone.

In the special case of the HC-05 the default PinCode for initiating the Coupling-Process is "1234" or "0000".

Wiring:

GND of HC-05 to GND Arduino, VCC of HC-05 to VCC Arduino,

TX HC-05 to Arduino Pin 10 (RX)

RX HC-05 to Arduino Pin 11 (TX)

*/

#include

SoftwareSerial BTserial(10, 11); // RX | TX

int sensorPin = A0;

int sensorValue = 0;

void setup() {

BTserial.begin(9600);

}

void loop() {

sensorValue = analogRead(sensorPin);

//IMPORTANT: The complete String has to be of the Form: 1234,1234,1234,1234;

//(every Value has to be seperated through a comma (',') and the message has to

//end with a semikolon (';')) )

BTserial.print("1234");

BTserial.print(",");

BTserial.print("1234.0");

BTserial.print(",");

BTserial.print("1234 hPa");

BTserial.print(",");

BTserial.print("500 ml/s");

BTserial.print(",");

BTserial.print(sensorValue);

BTserial.print(";");

//message to the receiving device

delay(20);

}

최신 버전 1.0의 새로운 기능

Last updated on Mar 27, 2016

Minor bug fixes and improvements. Install or update to the newest version to check it out!

번역 로드 중...

추가 앱 정보

최신 버전

ArduTooth 업데이트 요청 1.0

필요한 Android 버전

4.0.3 and up

더 보기

ArduTooth 스크린 샷

APKPure를 구독하십시오
최고의 Android 게임 및 앱의 초기 릴리스, 뉴스 및 가이드에 액세스하는 첫 번째 사람이 되십시오.
고맙지 만 사양 할게
가입하기
성공적으로 구독!
당신은 이제 APKPure에 가입되었습니다.
APKPure를 구독하십시오
최고의 Android 게임 및 앱의 초기 릴리스, 뉴스 및 가이드에 액세스하는 첫 번째 사람이 되십시오.
고맙지 만 사양 할게
가입하기
성공!
당신은 이제 우리의 뉴스 레터를 구독하고 있습니다.