Skip to content

Commit 2ac8c5f

Browse files
committed
Examples: RandomNumber fix serial prints referring to ECCX08
1 parent eb11947 commit 2ac8c5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/RandomNumber/RandomNumber.ino

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
secureElement Random Number
2+
SecureElement Random Number
33
44
This sketch uses the ECC508/ECC608 or SE050 to generate a random number
55
every second and print it to the Serial Monitor
@@ -19,12 +19,12 @@ void setup() {
1919
while (!Serial);
2020

2121
if (!secureElement.begin()) {
22-
Serial.println("Failed to communicate with ECC508/ECC608!");
22+
Serial.println("Failed to communicate with SecureElement!");
2323
while (1);
2424
}
2525

2626
if (!secureElement.locked()) {
27-
Serial.println("The ECC508/ECC608 is not locked!");
27+
Serial.println("The SecureElement is not locked!");
2828
while (1);
2929
}
3030
}

0 commit comments

Comments
 (0)