Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Xcode 6.1 Beta Fixes
  • Loading branch information
MichMich committed Sep 11, 2014
1 parent bd3a94e commit 607fa22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
![Xcode Tested](http://img.shields.io/badge/Xcode%20Tested-Xcode%206%20GM-orange.svg?style=flat)
![Xcode Tested](http://img.shields.io/badge/Xcode%20Tested-Xcode%206.1%20Beta-orange.svg?style=flat)

![Bluefruit LE nRF8001 Breakout](https://raw.githubusercontent.com/MichMich/nRF8001-Swift/master/Images/nRF8001-Swift_rounded.jpg)

Expand Down
10 changes: 5 additions & 5 deletions nRF8001-Swift/NRFManager.swift
Expand Up @@ -455,23 +455,23 @@ extension UARTPeripheral {
// MARK: Class Methods
extension UARTPeripheral {
class func uartServiceUUID() -> CBUUID {
return CBUUID.UUIDWithString("6e400001-b5a3-f393-e0a9-e50e24dcca9e")
return CBUUID(string:"6e400001-b5a3-f393-e0a9-e50e24dcca9e")
}

class func txCharacteristicsUUID() -> CBUUID {
return CBUUID.UUIDWithString("6e400002-b5a3-f393-e0a9-e50e24dcca9e")
return CBUUID(string:"6e400002-b5a3-f393-e0a9-e50e24dcca9e")
}

class func rxCharacteristicsUUID() -> CBUUID {
return CBUUID.UUIDWithString("6e400003-b5a3-f393-e0a9-e50e24dcca9e")
return CBUUID(string:"6e400003-b5a3-f393-e0a9-e50e24dcca9e")
}

class func deviceInformationServiceUUID() -> CBUUID{
return CBUUID.UUIDWithString("180A")
return CBUUID(string:"180A")
}

class func hardwareRevisionStringUUID() -> CBUUID{
return CBUUID.UUIDWithString("2A27")
return CBUUID(string:"2A27")
}
}

Expand Down

0 comments on commit 607fa22

Please sign in to comment.