Search found 1 match
- Sat Nov 21, 2020 10:32 pm
- Forum: General Discussion
- Topic: iPhone Bluetooth Presence detection help please
- Replies: 1
- Views: 2670
iPhone Bluetooth Presence detection help please
Hi all, I am trying to get my ESP32 to detect my iPhone via Bluetooth to set a GPIO pin high. I can get this to work on my Raspberry Pi Zero W with Python fine with the below code: #!/usr/bin/python import bluetooth import time import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) RELAY = 23 GPIO.setup(REL...