News

For remote control projects, a text-based serial protocol is often used. In the code for the receiver, switching to the corresponding commands can be done with switch...case in an elegant way. However ...
C ‘common sense’ is that the switch/case answer is both faster and makes more compact code because compilers tend to convert these into a jump table. However, the Arduino compiler tends to convert ...