-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBluetoothSender.ino
124 lines (106 loc) · 2.76 KB
/
BluetoothSender.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
* Bluetooth Sender/ Receiver.
*
* Works with HC05 Module.
*
* Sendet an und empfängt von einem Android Gerät. Die empfagenen Daten werden über
* den seriellen Monitor und einem OLED Display ausgegeben. Wenn ein Knopf, der über Pin 10/ C7 am Tensy
* abgefragt wird, gedrückt wurde, so wird eine Nachricht an den Androiden geschickt.
*
* Zu complilieren und hochladen darf das HC05 Modul nicht angeschlossen sein
* (Versorgungsspannung und Erde dürfen dran sein, es reicht, wenn RX und TX
* abgeklemmt werden.
*
* Android- Seitig wird diese App benötigt:
* ./0_Vorlagen/Networking/BluetoothConector/app/src/main/java/berthold/bluetoothconector/MainActivity.java
*
*/
// OLED Display
#include <SPI.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
// Serial
#include <SoftwareSerial.h>
// OLED Display
#define SCREEN_WIDTH 128 // OLED display width, in pixels
#define SCREEN_HEIGHT 32 // OLED display height, in pixels
// Declaration for an SSD1306 display connected to I2C (SDA, SCL pins)
#define OLED_RESET 4 // Reset pin # (or -1 if sharing Arduino reset pin)
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);
// Serial
// - Pin 7 ist RX
// - Pin 8 ist TX
#define txPin 3
#define rxPin 4
// RX TX
SoftwareSerial BT(4, 3);
// Input button
int IN_PIN=PIN_C7;
int pinState;
// Control
char received;
int index;
/*
* Einmal
*/
void setup()
{
// Display
display.begin(SSD1306_SWITCHCAPVCC, 0x3C);
display.clearDisplay();
showText("Warte.....");
display.display();
// set digital pin to control as an output
pinMode(rxPin, INPUT);
pinMode(txPin,OUTPUT);
// set the data rate for the SoftwareSerial port
BT.begin(9600);
// Setup input pin
pinMode (IN_PIN,INPUT_PULLUP);
}
/*
* Forever, forever and forever
*/
void loop()
{
// Werden Daten empfangen?
while (!BT.available()){
// Nein, wurde der Sende- Konopf gedrückt?
pinState=digitalRead(IN_PIN);
if (pinState==LOW){
// Ja, sende eine Nachricht über Bluetooth...
BT.println("Hi, I'am Here!!!!!");
showText("Send data....");
}
}
// Empfangene Daten löschen..
char wholeData[255];
// Wurde etwas empfangen?
while (BT.available()>0){
received=BT.read();
wholeData[index]=received;
if (index<=255) index++;
}
// Empfangene Daten anzeigen..
if (index>0){
wholeData[index]='\0';
Serial.println(wholeData);
showText(wholeData);
}
index=0;
// Again.....
}
/*
* Text im display anzeigen.
*
*/
void showText(String text)
{
display.clearDisplay();
display.setTextSize(1);
display.setTextColor(SSD1306_WHITE);
display.setCursor(3,4);
display.println(text);
display.display();
}