Forum Replies Created
-
AuthorPosts
-
Hi Setyawan,
sorry if I answer you only now, but I’m returning this day at home.In the program, you put a cycle that sends a big quantity of messages without stopping and I think you ask too much to the devices, try to wait for more from one message to another, then put the
if (e32ttl.available() > 1)
outside the cycle of sending and don’t use delay but check an elapsed time for sending and nothing for the receiving.
Bye Renzo
26 June 2022 at 18:18 in reply to: esp8266 from stattion mode to access point mode with FtpServer code #21495Hi,
the problem is this:Response: 227 Entering Passive Mode (0,0,0,0,195,89)
you must specify the address because for some reason It can’t find the self-IP address.
Try to usevoid setLocalIp(IPAddress localIp);
to sed the IP.
Bye RenzoHi Anton,
It seems fully compatible with MKS WiFi standards.
Witch kind of firmware do you have?
Bye RenzoHi Anton,
I don’t have a machine to test, and now I’m out for all the week.
When I return to home I try to check something.
Bye RenzoHi warleysr,
try to connect the AUX pin also to pin 15 and send the output of your program.f you don’t connect M0 and M1 remove it from the constructor.
LoRa_E220 e220ttl(&Serial2, 15);
If you have a nodeMCU you must follow the schematic of esp8266.
M0 VCC (Set programming/sleep mode) M1 VCC (Set programming/sleep mode) TX PIN D2 (PullUP 4,7KΩ) RX PIN D3 (PullUP 4,7KΩ) AUX Not connected better PIN D5 (PullUP 4,7KΩ) VCC 5v GND GND
LoRa_E220 e220ttl(D2, D3, D5); // Arduino RX <-- e220 TX, Arduino TX --> e220 RX AUX M0 M1
Bye Renzo
Hi Cristian,
you can use read all or read single pin, but I discourage using a mixed-mode because I use a “debounce” and It can be not so simple to understand.
Bye RenzoHi Nextcsolution,
I don’t have a schema, but you can rebuild It by following the article, every part is explained in a specified section.For example, the server part is the merge of these shields
WeMos D1 (esp8266): i2c shield to manage encoder, multiple buttons, and LEDs
WeMos D1 (esp8266) manage relay and shield
WeMos D1 (esp8266): HardwareSerial shield for Ebyte E32 E22 E220 LoRa devicesBye Renzo
Hi Jordan,
if you use the regulator from Arduino Nano Every, It already has a 1uF capacitor; otherwise, you must check your PCB to select the correct one. If you connect the E32 directly from USB power, It’s ok.Bye Renzo
Attachments:
You must be logged in to view attached files.13 June 2022 at 08:09 in reply to: E220 LoRa device: how to make 3 devices communicate together #21190Hi Guyome,
the code is correct, if you don’t receive the messages probably It’s a wiring problem or a configuration problem.Connect the AUX pin also, to have the feedback.
And yes you can do all without my library directly with UART commands.
Bye Renzo
Hi jordan,
I must take a look at the PCB, generally, the decoupling capacitor is used to stabilize the voltage regulator.
Bye RenzoHi Lucas,
When enabled send the current ambient noise RSSI;
When disabled send the RSSI when the data was received last
time.When I have some time I’m going also to do the test you proposed.
Bye Renzo
3 June 2022 at 08:10 in reply to: SMTP error: We do not authorize the use of this system to transport unsolicited change HELO #21092Hi Sebastian,
does It work with the change or without them?
Bye Renzo2 June 2022 at 08:17 in reply to: SMTP error: We do not authorize the use of this system to transport unsolicited change HELO #21090Mmmm.. I think you don’t have the last version of the library.
The position of inserted lines is wrong.Tomorrow I try to give you a package to test.
Bye Renzo
1 June 2022 at 08:08 in reply to: SMTP error: We do not authorize the use of this system to transport unsolicited change HELO #21069Hi Sebastian,
I found this, CPanel don’t use standard response, or better return multiple line in the connection response.Try to add these 2 lines
awaitSMTPResponse(client); awaitSMTPResponse(client);
in the EMailSender.cpp at line 523
and in the
setup()
before send add
setEHLOCommand(true);
31 May 2022 at 21:54 in reply to: SMTP error: We do not authorize the use of this system to transport unsolicited change HELO #21062 -
AuthorPosts