Skip to main content
edited body
Source Link
Juraj
  • 18.3k
  • 4
  • 32
  • 50

Arduino Microprocessors are mostly single core devices and thus are unable to do more than one thing at a time. The trick is to write code efficiently so it looks like several things are happening at the same time but in reality they just happen very quickly. The RTCLCD only needs to show time every second and displaying RPM every second should be enough so to get both to happen within a second should be possible.

Arduino Microprocessors are mostly single core devices and thus are unable to do more than one thing at a time. The trick is to write code efficiently so it looks like several things are happening at the same time but in reality they just happen very quickly. The RTC only needs to show time every second and displaying RPM every second should be enough so to get both to happen within a second should be possible.

Arduino Microprocessors are mostly single core devices and thus are unable to do more than one thing at a time. The trick is to write code efficiently so it looks like several things are happening at the same time but in reality they just happen very quickly. The LCD only needs to show time every second and displaying RPM every second should be enough so to get both to happen within a second should be possible.

Source Link

Arduino Microprocessors are mostly single core devices and thus are unable to do more than one thing at a time. The trick is to write code efficiently so it looks like several things are happening at the same time but in reality they just happen very quickly. The RTC only needs to show time every second and displaying RPM every second should be enough so to get both to happen within a second should be possible.