File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -653,6 +653,14 @@ You could other examples if needed featuring different
653
653
functionalities of the library.
654
654
If you add additional examples, be sure to include them in the ``examples.rst ``. Naming of the examples
655
655
files should use the name of the library followed by a description, using underscore to separate them.
656
+ When using print statements you should use the ``" ".format() `` format, as there are particular boards
657
+ that are not capable to use f-strings.
658
+
659
+ .. code-block :: python
660
+
661
+ text_to_display = " World!"
662
+
663
+ print (" Hello {} " .format(text_to_display))
656
664
657
665
Sensor properties and units
658
666
--------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments