C++ library

24 Sep 2012

does some body now a good c++ standart library? Is it possible to ask at the first start up "whats you name?" and the afer every new start the mbed says "hello name" (so you mast save the first time the name (is this possible?))

Thanks for reply

27 Sep 2012

Hi Daniel,

The mbed library should allow you to do that, although it depends how you want to display your output and receive your input. You could use serial over USB to communicate with the mbed and to store the name between executions you could store the entered data using /handbook/LocalFileSystem (read the warnings on the handbook page about closing files).

Hopefully that will get you started.

Steve