Esp32 s3 box error

closed as of now please

Hi @waitsmd32. These errors are caused by you not wrapping what you intended to be string literals in double quotes.

For example:

Can be fixed by changing line 21 of your sketch to this:

const char* ssid = "Waits1";
2 Likes

Hi @waitsmd32 ,

Welcome to the forum..

const char* ssid = "Waits1";

need to double quote your strings??

good luck.. ~q

1 Like

You must add double quotes to all the string literals.

careful when posting..
best to "*******" out the secrets..
~q

1 Like

Perhaps you’re jumping in a bit deep….

the tutorials and examples show the basics, so you become familiar with them, how to use the elements, and understand the syntax,

Copy & paste rarely teaches anything, I’d guess you can’t explain every line of code in this project,,. that’s a long term recipe for disaster.
It’s ok, but as long as you can explain 80%, then say ‘that hidden function call does that’, you’re well on the way.

Being able to write code like this is different from understanding why it was written a particular way. That’s why many of the contributors on here are harsh when critiquing over-complex code performing a simple task.

1 Like

absolutely. I want to learn. Can you point to any resources that could help me?

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.