import bluetooth sockfd = bluetooth.BluetoothSocket(bluetooth.RFCOMM) sockfd.connect(('00:00:00:00:00:00', 1)) # BT Address sockfd.send('ATZ\r') sockfd.send('AT+CMGF=1\r') sockfd.send('AT+CSCA="+393359609600"\r') # Client TIM ITA sockfd.send('AT+CMGS="+39xxxxxxxxxx"\r') # TO PhoneNumber sockfd.send('Messaggio da mandare...\n') sockfd.send(chr(26)) # CTRL+Z sockfd.close()
You need to create an account or log in to post comments to this site.