fix analog pin assignment in examples
This commit is contained in:
parent
5d8d4925d4
commit
d884e4d4ed
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ IPAddress myDns(8, 8, 8, 8);
|
||||||
|
|
||||||
// Choose the analog pin to get semi-random data from for SSL
|
// Choose the analog pin to get semi-random data from for SSL
|
||||||
// Pick a pin that's not connected or attached to a randomish voltage source
|
// Pick a pin that's not connected or attached to a randomish voltage source
|
||||||
const int rand_pin = A7;
|
const int rand_pin = A5;
|
||||||
|
|
||||||
// Initialize the SSL client library
|
// Initialize the SSL client library
|
||||||
// We input an EthernetClient, our trust anchors, and the analog pin
|
// We input an EthernetClient, our trust anchors, and the analog pin
|
||||||
|
|
|
@ -39,7 +39,7 @@ IPAddress myDns(8, 8, 8, 8);
|
||||||
|
|
||||||
// Choose the analog pin to get semi-random data from for SSL
|
// Choose the analog pin to get semi-random data from for SSL
|
||||||
// Pick a pin that's not connected or attached to a randomish voltage source
|
// Pick a pin that's not connected or attached to a randomish voltage source
|
||||||
const int rand_pin = A7;
|
const int rand_pin = A5;
|
||||||
|
|
||||||
// Initialize the SSL client library
|
// Initialize the SSL client library
|
||||||
// We input an EthernetClient, our trust anchors, and the analog pin
|
// We input an EthernetClient, our trust anchors, and the analog pin
|
||||||
|
|
Loading…
Reference in a new issue