Forum Replies Created
-
AuthorPosts
-
Hi 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 #21062I must do some tests, which kind of microcontroller do you use?
31 May 2022 at 06:55 in reply to: SMTP error: We do not authorize the use of this system to transport unsolicited change HELO #21056Hi Sebastian,
I find some similar issues and seems that It’s a limitation of your email provider like this.Which provider do you use?
Hi hahah,
please share the code to check if there are some issues.
Bye RenzoIt seems a common problem,
https://github.com/espressif/esp-idf/issues/8409
esp32.com/viewtopic.php?t=3155try to add all the code.
Bye Renzo
-
AuthorPosts