Local server and USB as possible?

smartphone I made the connection with my manual IP token and password but do not want to connect it

in the local server I have to get my email address and password Where exactly, thank you for your patience

If I understand your post I think you are saying maybe you are now connected to your local server.

You need to move back one step in the app and create an account as Cloud accounts are separate to local accounts.

I made a new gmail account, no changes

Please explain in detail what this comment means.

CMD with launch

Blynk Server successfully started.
All server output is Stored in folder 'C:. \ Users \ Francis \ Blink server \ logs ’ file.

with smartphone picture as my IP password my adress and token
no connection

@francisrav4 may be you can follow my sketch format which is working in my local server.

char auth[] = "5d82xxxxxxxxxxxxxxxxxxxfb3ced8f6";                        // your auth key..

IPAddress server_ip (192, 168, 1, xxx);                                             // This is you local server I.P address. or your local computer where the blynk java server is installed. Note: Configure your computer into static i.p not obtain otherwise yoour device cant talk to your server. (check your i.p from CMD by typing this "arp -a" interface is mentioning you computer i.p or "ipconfig /all"  (no colon), and look for the ethernet adapter.

byte arduino_mac[] = { 0xDE, 0xED, 0xBA, 0xXX, 0xXX, 0xXX };          // modify the xx, replace it with 2digits hexa characters. 0-9 A-F, the first 3 column keep it as it is.
IPAddress arduino_ip ( 192,   168,   1,  xxx);                                        // your I.P range or change it with your local i.p range
IPAddress dns_ip     ( 192,   168,   1,   1);
IPAddress gateway_ip ( 192,   168,   1,   1);                                        // verify your gateway put the same gate way from your blynk server
IPAddress subnet_mask(255, 255, 255,   0);                                       // verify your subnetmask put the same subnet from your blynk server

void setup()
{
  Serial.begin(9600);
  Blynk.begin(auth, server_ip, 8442, arduino_ip, dns_ip, gateway_ip, subnet_mask, arduino_mac);   //  those net info above are defined here... no need to change from this line. you othe codes put below on this line.. 

hope this can help you…

You might have “successfully” started the server but you are destined to lose any projects you create but you are not using the correct syntax for the data storage folder on your server.

Again that is not your immediate problem but it will be in due course.

Have you done the firewall stuff?

The other issue can be that sub folders of “Users” are normally protected areas in Windows and not accessible unless you specifically grant access.

Did you watch the video as linked by @saurabh47 as I believe it covers this issue?
The video shows similar incorrect paths to yours but the creator of the video has annotated the video to confirm the errors.

Well worth watching.

Looks like an Ethernet sketch rather than a USB sketch.

@francisrav4 i have noticed from the photo you posted the local port is 443, how if you try to use the default port number “8443” think this is the issue.

@Costas lol, im talking deferent, you discussing about usb and i’m telling about Ethernet. :sweat_smile:

field is too short to show full port.

hello castle and all, thank for .ino

@Costas disabled firewall for testing

Changed local port is 443 no connection

where to find byte arduino_mac ?

Arduino compil error

line IPAddress subnet_mask(255, 255, 255, 0); // verify your subnetmask put the same subnet from your blynk server

exit status 1
‘IPAddress’ does not name a type

@francisrav4 have you include this library?

#include <Ethernet.h>
#include <BlynkSimpleEthernet.h>

mac address byte you can define manually as long as no conflict from any of the devices or appliance connected in your the same local network.
can you share you code?

char auth = “9c14ecdc66874e84bead6ce722389609”; // your auth key…

IPAddress server_ip (192, 168, 1, 1); // This is you local server I.P address. or your local computer where the blynk java server is installed. Note: Configure your computer into static i.p not obtain otherwise yoour device cant talk to your server. (check your i.p from CMD by typing this “arp -a” interface is mentioning you computer i.p or “ipconfig /all” (no colon), and look for the ethernet adapter.

byte arduino_mac = { 0xDE, 0xED, 0xBA, 0xAF, 0xCD, 0xAD }; // modify the xx, replace it with 2digits hexa characters. 0-9 A-F, the first 3 column keep it as it is.
IPAddress arduino_ip ( 192, 168, 1, 8); // your I.P range or change it with your local i.p range
IPAddress dns_ip ( 192, 168, 1, 1);
IPAddress gateway_ip ( 192, 168, 1, 1); // verify your gateway put the same gate way from your blynk server
IPAddress subnet_mask(255, 255, 255, 0); // verify your subnetmask put the same subnet from your blynk server

void setup()
{
Serial.begin(9600);
Blynk.begin(auth, server_ip, 8442, arduino_ip, dns_ip, gateway_ip, subnet_mask, arduino_mac); // those net info above are defined here… no need to change from this line. you othe codes put below on this line…

@francisrav4 by the way please don’t use 192.168.1.(1) normally 1 is assigned to the router gateway. skip this number use higher number like: 5 to 254

I thought the thread was about a USB connection.

only for IPAddress server_ip (192, 168, 1, 1) ?
to such IPAddress server_ip (192, 168, 1, 200)

compilation in Arduino gives error

@francisrav4 format your code by typing this symbol
(before and after the codes 3 times as you can see)

@Castle [quote=“Castle, post:38, topic:8608, full:true”]
@francisrav4 format you code by typing this symbol(before and after the codes 3 times as you can see)
[/quote]

sorry, I do not understand your request[quote=“Costas, post:36, topic:8608, full:true”]
I thought the thread was about a USB connection.
[/quote]

Yes

@francisrav4 i mean format your code by placing this symbol ``` 3 times before and after the code.