Search found 2 matches

by Drakoky
Wed Mar 24, 2021 11:46 pm
Forum: ESP8266 boards
Topic: Is there an updated guide about how to use esp-open-sdk?
Replies: 6
Views: 5014

Is there an updated guide about how to use esp-open-sdk?

I had many problems with esp-open-skd , follow the guide on the GitHub repo. First of all, this guide isn't clear with dependencies, I had to install one by one, because is only tell me one dependency missing each time I run make. Apparently, this repo doesn't work properly on newest version of Linu...
by Drakoky
Tue Feb 23, 2021 11:48 pm
Forum: General Discussion and Questions
Topic: Literal String Interpolation library
Replies: 1
Views: 1052

Literal String Interpolation library

Is posible add "Literal String Interpolation" to micropython, this library allow to do the next:

Code: Select all

>>> a = "Drako"
>>> b = "micropython"
>>> f"Hello, my name is {a}, I'm new with {b}."
"Hello, my name is Drako, I'm new with micropython."
When I try to do this in micropython, returns me an error.