Meshtastic-Apple/Meshtastic/Extensions/Data.swift
2023-04-25 17:56:57 -07:00

18 lines
344 B
Swift

//
// 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)}
}
}