Meshtastic-Apple/Meshtastic/Extensions/Data.swift

19 lines
344 B
Swift
Raw Normal View History

2023-04-25 17:56:57 -07:00
//
// Data.swift
// Meshtastic
//
// Copyright(c) Garth Vander Houwen 4/25/23.
//
import Foundation
extension Data {
var macAddressString: String {
let mac: String = reduce("") {$0 + String(format: "%02x:", $1)}
return String(mac.dropLast())
}
var hexDescription: String {
return reduce("") {$0 + String(format: "%02x", $1)}
}
}