How to format strings without the String class

Поділитися
Вставка
  • Опубліковано 24 жов 2024

КОМЕНТАРІ • 27

  • @asjdiaosdjasd
    @asjdiaosdjasd 3 роки тому +3

    you should put an ads in your video i don't even mind
    you explain it really clearly, there's so much effort to this
    thank you for making this

  • @simonolofsson7488
    @simonolofsson7488 4 роки тому +3

    I was about to write my own JSON serializer for my Feather project in C++. Went on GitHub -> Your lib -> Your blog -> Your channel -> this video. Subbed!
    / fellow IOT / embedded dev

    • @BenoitBlanchon
      @BenoitBlanchon 4 роки тому +2

      These videos require a log of time and energy. I'm delighted to see that people appreciate them.

  • @TJ13062010
    @TJ13062010 9 місяців тому

    This video just helped me a LOT! Thank you very much for the clear and slow buildup of the different print functions. Amazing video!

  • @dafpnp
    @dafpnp 4 роки тому +3

    Wonderful. Loved the way you put it together. Would love to see more of such gems.

  • @alainkovacs2007
    @alainkovacs2007 3 роки тому +2

    Absolutely amazing video! You explain everything so well. You deserve many many more views.

  • @byxlettera1452
    @byxlettera1452 2 роки тому

    The only one who knows what to do. Great video!

  • @johneagle4384
    @johneagle4384 2 роки тому

    To bad you do not have other videos. You have the ability to explain things in a very clear way.

  • @mohamedgendia4274
    @mohamedgendia4274 10 місяців тому

    Excited, excellent explanation thank you

  • @edust83
    @edust83 2 роки тому

    Great explaination! Thanks very much!

  • @warperone
    @warperone 2 роки тому

    excellent videos and extremely well explained with visuals. Pls do more ;-)

  • @microtan6775
    @microtan6775 7 місяців тому

    Thank you so much, your vieo is well made and very usful!

  • @SymphonyKol_androidLover
    @SymphonyKol_androidLover Рік тому

    amazing, it was really helpful dude, thanks a lot.

  • @zyghom
    @zyghom 2 роки тому

    there is only ONE problem with your channel my friend: you should have put 500 such videos there! I already bought your book - super nice - but still videos are very useful ;-)

  • @Zhaymoor
    @Zhaymoor 2 роки тому

    great video !! thank you man

  • @MPElectronique
    @MPElectronique 3 роки тому

    Félicitation Benoit :)

  • @robertrobert5583
    @robertrobert5583 Рік тому

    Very helpful

  • @fberron
    @fberron 3 роки тому

    Excellent. Thank you.
    Q. What other Arduino boards accept %f?

    • @BenoitBlanchon
      @BenoitBlanchon 3 роки тому +2

      As far as I know, only the AVR core disabled the support for %f, so the UNO, Yùn, Nano, and Mega won't support it.
      All other boards (including ESP8266, ESP32, and ARM) should support %f.

    • @mrvip85
      @mrvip85 3 роки тому +3

      You can re-enable the %f support on AVRs (since it is deactivated to save a bit flash memory) by adding the following linker flags: -Wl,-u,vfprintf,-lprintf_flt

  • @williamwatkins6669
    @williamwatkins6669 2 роки тому

    Tu continues cette chaîne ?

    • @BenoitBlanchon
      @BenoitBlanchon 2 роки тому

      En théorie, oui. En pratique, je n'arrive pas à trouvé le temps.

    • @williamwatkins6669
      @williamwatkins6669 2 роки тому

      @@BenoitBlanchon je comprends. J'ai une question aurais tu des ressources (livres ou sites) pour bien coder en ce++ sur l'arduino. Je m'explique. Je suis relativement a l'aise en python et en go j'arrive à bien structuré mon code pour faire des projet conséquent mais pour arduino bien que je maîtrise un peut prêt le ça++ de base je galère à trouver le bon workflow du fait que ce++ ne soit pas du tout dogmatique. J'ai acheté ton ebook sur arduinojson et ça me permet d'avoir les petits snippet. La j'attends le livre ''arduino software internals''. Bref c'est un peu compliqué de poser la question sur youtube mais je suis un peu coincé (as tu un serveur discord?)

  • @Fixaj
    @Fixaj 2 роки тому

    ı am going to sleep Zzz..

  • @VA3HDL
    @VA3HDL Рік тому

    This one is the truly holy grail : snprintf_P(s, sizeof(s), PSTR("%s is %i years old"), name, age); it made my code work again. Thanks!