본문 바로가기
ETC./기타

기타) 라즈베리파이와 IPhone 블루투스 연결 - 참고 사이트

by 후르륵짭짭 2020. 11. 11.
728x90
반응형

 

참고 사이트 - 라즈베리파이 :

라즈베리파이 화면 해상도 변경 방법

blog.naver.com/dhksrl0508/220984145756

 

라즈베리파이 해상도 설정(변경)-/boot/Config.txt 수정

Nomachine 같은 프로그램을 사용하여 라즈베리에 원격연결하면 해상도가 위의 사진과 같이 이상하게 바뀌...

blog.naver.com

라즈베리파이 Iphone에서 탐색하게 만들기

stackoverflow.com/questions/37927606/how-do-i-make-raspberry-pi-3-discoverable-for-ios-and-corebluetooth

 

How do I make Raspberry Pi 3 discoverable for iOS and CoreBluetooth?

I have a Raspberry Pi 3 and I am trying to make it discoverable for iOS devices. I ran sudo hciconfig hci0 piscan to make it discoverable. I can see it with my iMac. On iOS, I am using CoreBluetoo...

stackoverflow.com

라즈베리파이 블루투스 스캔 및 pair 방법

m.blog.naver.com/PostView.nhn?blogId=beaqon&logNo=221411638205&proxyReferer=https:%2F%2Fwww.google.co.kr%2F

 

라즈베리파이 블루투스 페어링 및 연결 방법

내가 세상에서 제일 싫어하는 두가지가 뭐냐면 라즈베리파이와 라즈베리파이 만든 인간이다. 라즈베리파이...

blog.naver.com

라즈베리파이 와 안드로이드 데이터 송수신 

popcorn16.tistory.com/195

 

라즈베리파이4 안드로이드 블루투스 통신하기

라즈베리파이4와 안드로이드 사이에 블루투스 연결을 시도했습니다. 라즈베리파이4에서 블루투스 통신을 하기 위한 코드는 파이썬으로 작성했습니다. 라즈베리파이, 안드로이드, 블루투스 통

popcorn16.tistory.com

라즈베리파이 from bluetooth import * 해서 오류 해결 

stackoverflow.com/questions/23985163/python3-error-no-module-named-bluetooth-on-linux-mint

 

Python3 error "no module named bluetooth" on Linux Mint

I am trying to connect my Lenovo S10E to a Nintendo Wiimote via bluetooth. I am using a simple Python script, reproduced below. I am calling it from the Linux Mint (version 16, "Petra") command line

stackoverflow.com

라즈베리 파이 socket connect 안돼는 문제 (해결방법은 아님)

www.raspberrypi.org/forums/viewtopic.php?t=250052

 

Python Bluetooth module isnt functioning correctly - Raspberry Pi Forums

Tue Aug 27, 2019 2:28 pm I'm trying to connect my phone (Huawei P9 Lite) to my Raspberry Pi zero w to control the GPIO pins wirelessly. Code: Select all import bluetooth port = 1 server_socket = bluetooth.BluetoothSocket( bluetooth.RFCOMM ) server_socket.b

www.raspberrypi.org

라즈베리파이 Socket 프로그래밍 오류

stackoverrun.com/ko/q/10148302

 

python - 블루투스 서버에 연결하려고 할 때 연결이 거부되었습니다

내 블루 베리 클라이언트가 서버이고 내 랩톱이 클라이언트 인 간단한 블루투스 클라이언트/서버를 구축하려고합니다. 이이 (내 라즈베리 파이에서 실행) 서버 코드 : #!/usr/bin/python # -*- coding: utf

stackoverrun.com

 

 

참고 사이트 - IPhone :

아두이노와 Corebluetooth 연결

www.instructables.com/IPhone-to-Arduino-using-Bluetooth-40-/

 

IPhone to Arduino Using Bluetooth 4.0 --

IPhone to Arduino Using Bluetooth 4.0 --: Ladvien.comNOTE: This project requires an iOS Developer License. It's $99 a year.This write-up describes writing an app for Bluetooth 4.0 iOS devices to enable a serial connection to an Arduino. To facilitate the s

www.instructables.com

위의 내용에서 사용한 코드들 

github.com/Ladvien/bleModule/blob/master/bleModule/bleTableViewController.swift

 

Ladvien/bleModule

Helper module for connecting HM-1X to iOS devices. - Ladvien/bleModule

github.com

coreBluetooth로 주변기기 탐색하는 방법

www.novelbits.io/intro-ble-mobile-development-ios/

 

Introduction to BLE Mobile Development [iOS] - Novel Bits

This tutorial represents a small portion of a complete course on BLE development for iOS in the Bluetooth Developer Academy. The course was developed in partnership with Anas Imtiaz, PhD. In this tutorial, we will look at developing iPhone/iPad apps that i

www.novelbits.io

주변기기 탐색은 했지만 오류메시지가 발생 할 때 해결 방법 : didDisCover services

stackoverflow.com/a/55827240/13065642

 

while delegate is either nil or does not implement peripheral:didUpdateValueForCharacteristic:error:?

In my app I want to get battery details from BLE device through Bluetooth. I am new for CoreBluetooth framework. Please give me solution for how to get Data from BLE device in app. Below is my

stackoverflow.com

didDiscover services가 무엇인지

developer.apple.com/documentation/corebluetooth/cbperipheraldelegate/1518744-peripheral

 

Apple Developer Documentation

 

developer.apple.com

didDiscover servieces를 사용한 예제

stackoverflow.com/a/47261050/13065642

 

CoreBluetooth peripheral:didDiscoverServices not firing

I have a simple app where I implemented a Central that can connect to a Peripheral and read or write to him. For some reasons always this worked, but now I don't know why the delegate method

stackoverflow.com

내용을 전송 받을 때 사용하는 것 

developer.apple.com/documentation/corebluetooth/cbperipheraldelegate/1518708-peripheral

 

Apple Developer Documentation

 

developer.apple.com

데이터를 수신 했을 때 읽는 방법

stackoverflow.com/questions/41776915/raspberrypi-receiving-data-from-bluetooth

 

Raspberrypi receiving data from bluetooth

So, currently I've been working on an interface between an iOS app and a raspberry pi where the pi receives information from the app through bluetooth. Right now I have my app working, connecting t...

stackoverflow.com

아두이노랑 CoreBluetooth 연결 방법 (자세한 설명)

www.raywenderlich.com/231-core-bluetooth-tutorial-for-ios-heart-rate-monitor

 

Core Bluetooth Tutorial for iOS: Heart Rate Monitor

In this Core Bluetooth tutorial, you’ll learn how to discover, connect to, and retrieve data from compatible devices like a chest-worn heart rate sensor.

www.raywenderlich.com

먼가 큰 도움이 될 것 같은 좋은 사이트 

www.freecodecamp.org/news/ultimate-how-to-bluetooth-swift-with-hardware-in-20-minutes/

 

The Ultimate How-to: Build a Bluetooth Swift App With Hardware in 20 Minutes

In a previous tutorial, you learned how to add Bluetooth to a Particle Xenon application. That way you could control the onboard RGB LED from a test app like nRF Connect or Light Blue Explorer. In this post, we're going to take it one step further. We're g

www.freecodecamp.org

블루투스랑 연결 시키는 방법

www.kevinhoyt.com/2016/05/20/the-12-steps-of-bluetooth-swift/

 

The 12 Steps of Bluetooth (Swift)

There are a lot of tutorials out there for using Bluetooth (Low Energy) on iOS. Many of those are written using Swift. Some of them cover the mechanics of Bluetooth, while others focus on just the code. This post will definitely be of the later variety. Wh

www.kevinhoyt.com

 

728x90
반응형

댓글