Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

swiftui - If send from peripheral to central an Int(38), I receive (38) but if I send Int(3847) I receive (7) how can I get the correct value?

 var manager: CBCentralManager!
 var peripheral: CBPeripheral!
 var readCharacteristic: CBCharacteristic?
 var writeCharacteristic: CBCharacteristic?
 var notifyCharacteristic: CBCharacteristic?

@Published var data:[UInt8] = [0,0]{
            didSet{
                send(data)
                print("0?? Dato Inviato: (data)")
            }
        }


func peripheral(_ peripheral: CBPeripheral, didUpdateValueFor characteristic: CBCharacteristic,
                    error: Error?) {
      switch characteristic.uuid {


if let value = characteristic.value {

if self.feedbackRfid == true {
                    self.rfid = value.byte()
                    print(" (rfid)")
 

func byte() -> String{
        return map{
            String(UInt32($0))
        }.joined()
    }
question from:https://stackoverflow.com/questions/65892729/if-send-from-peripheral-to-central-an-int38-i-receive-38-but-if-i-send-int

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...