//master
#include "BluetoothSerial.h"
BluetoothSerial SerialBT;
void setup() {
Serial.begin(115200);
SerialBT.begin("ESP32_Sunucu"); // Bluetooth cihaz adı
Serial.println("Bluetooth cihazı başlatıldı. Bağlanmak için hazır.");
}
void loop() {
SerialBT.println("name=giray"); // Sabit değeri Bluetooth üzerinden gönder
delay(1000); // 1 saniye bekle ve tekrar gönder
}