fix analog pin assignment in examples

This commit is contained in:
Noah Laptop 2019-08-05 21:33:03 -07:00
parent 5d8d4925d4
commit d884e4d4ed
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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