Nodes Documentation

Input

  • Analog Sensor
  • Circuit Touch
  • IR Proximity
  • Light Sensor
  • Sonar
  • Squeeze Sensor

Brains

  • Converter
  • Gate
  • List
  • Randomizer
  • Sequence
  • Wave

Output

  • Buzzer
  • Continuous Servo
  • Dual Color LED
  • Key Press
  • Key Sequence
  • LED
  • Servo Motor
  • Voltage Output

Randomizer

Randomizer

Node to send out a Random number at a given interval.

Connections

Inputs

  • interval
    • Range: 0 - 1000
    • The time in seconds between sending out a random number
  • min
    • Range: 0 - 1000
    • Minimum possible value of the random number
  • max
    • Range: 0 - 1000
    • Maximum possible value of the random number

Outputs

  • out
    • Range: min - max
    • The random number between the min and max values.

Comment

This is a pseudo random number generator, meaning that it is not truly random, but creates it’s numbers with an algorithm that appears to send random numbers. It’s using this algorithm: coming soon

Learn more

Where does true randomness exist? How random can you be? If you ask your friends to say a random numbers, will their answers be random? Check out: Numberphiles video on Random Numbers.