Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DeimosHall committed Dec 29, 2023
1 parent 54d1faf commit 1df0e56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/NDEFSendMessage/NDEFSendMessage.ino
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ void setup() {
message.addUriRecord("https://www.electroniccats.com"); // https://www. prefix explicitly
message.addUriRecord("tel:1234567890"); // The library can handle all the prefixes listed at https://github.com/ElectronicCats/ElectronicCats-PN7150/blob/master/API.md#uri-prefixes
String ssid = "Bomber Cat"; // SSID of the WiFi network
String authentificationType = "WPA2 PERSONAL"; // Supported authentification types at https://github.com/ElectronicCats/ElectronicCats-PN7150/blob/master/API.md#wifi-authentication-types
String authenticationType = "WPA2 PERSONAL"; // Supported authentication types at https://github.com/ElectronicCats/ElectronicCats-PN7150/blob/master/API.md#wifi-authentication-types
String encryptionType = "AES"; // Supported encryption types at https://github.com/ElectronicCats/ElectronicCats-PN7150/blob/master/API.md#wifi-encryption-types
String password = "Password"; // Password of the WiFi network
message.addWiFiRecord(ssid, authentificationType, encryptionType, password);
message.addWiFiRecord(ssid, authenticationType, encryptionType, password);
message.addUriRecord("mailto:[email protected]");
message.addMimeMediaRecord("text/plain", "Hello world!", 12); // Media-type as defined in RFC 2046
nfc.setSendMsgCallback(messageSentCallback);
Expand Down

0 comments on commit 1df0e56

Please sign in to comment.