Skip to content

Commit

Permalink
Remove serial from get random number
Browse files Browse the repository at this point in the history
  • Loading branch information
blackcoffeexbt committed Oct 31, 2023
1 parent 976897f commit d86bd85
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion nostrZapLamp/nostrZapLamp.ino
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,6 @@ int64_t getAmountInSatoshis(const String &input) {
*/
uint16_t getRandomNum(uint16_t min, uint16_t max) {
uint16_t rand = (esp_random() % (max - min + 1)) + min;
Serial.println("Random number: " + String(rand));
return rand;
}

Expand Down

0 comments on commit d86bd85

Please sign in to comment.