Search found 1696 matches

by rudi ;-)
Sun Feb 12, 2017 10:19 pm
Forum: General Discussion
Topic: silicon v2
Replies: 4
Views: 8910

silicon v2

ESP_Sprite wrote:.. We should get the new silicon this week...
src

Hi Guys,

It has calmed down again.
Time to inquire:

How are the first tests with the new silicon v2?
Do you meet the requirements and fixes?

best wishes
rudi ;-)
by rudi ;-)
Sun Feb 12, 2017 1:58 pm
Forum: Documentation
Topic: Documentation Requests/Feedback
Replies: 81
Views: 205637

Re: Document Requests

hehe ;-)
btw:
spotted in the wild last weeks
ESP32-Lyra.png
ESP32-Lyra.png (418.56 KiB) Viewed 35591 times
best wishes
rudi ;-)
by rudi ;-)
Sun Feb 12, 2017 1:49 pm
Forum: General Discussion
Topic: ESP-WROOM-32 AT commands firmware
Replies: 60
Views: 86273

Re: ESP-WROOM-32 AT commands firmware

append: --------- you can use UART for AT Commands , you can also use SPI, Socket taken from overview : It supports custom AT commands based on the lib and related APIs, and ones can also define input and output medium, like uart, spi, socket, bt, etc. The demo is the AT command set based on uart.Yo...
by rudi ;-)
Sun Feb 12, 2017 1:45 pm
Forum: General Discussion
Topic: ESP-WROOM-32 AT commands firmware
Replies: 60
Views: 86273

Re: ESP-WROOM-32 AT commands firmware

;-) hi pawel if you not trust DATA Packet sends/received things further for your way, if you not have know: UDP is fast - but not sure, that all data packets send/received and they are not sorted, it can be, that a packet you send before a next packet received later as the next packet. you can use o...
by rudi ;-)
Sun Feb 12, 2017 6:34 am
Forum: Report Bugs
Topic: AT+CIPSTA Typo ESP32 SoftAP -> ESP32 Station
Replies: 0
Views: 3514

AT+CIPSTA Typo ESP32 SoftAP -> ESP32 Station

hi: AT DOCU ESP32 AT Instruction Set and Examples This document introduces the ESP32 AT commands, explains how to use them and provides examples of several common AT commands. V1.0 2017.02.09 4.2.3 Site 19/53 AT+CIPSTA—Sets the IP Address of the ESP32 Station Query Command: AT+CIPSTA? Function: to o...
by rudi ;-)
Sun Feb 12, 2017 5:31 am
Forum: General Discussion
Topic: ESP-WROOM-32 AT commands firmware
Replies: 60
Views: 86273

Re: ESP-WROOM-32 AT commands firmware

Try to set your IP/gateway/netmask on your station/client. AT+CWJAP="ESP_2CB220","", OK AT+CIFSR +CIFSR:STAIP,"0.0.0.0" +CIFSR:STAMAC,"18:fe:34:2c:d8:d0" OK looks like a smal bug: "OK" comes but AT+CWJAP parameter command is wrong with this parameters cause AT Command is wrong with this parameter, ...
by rudi ;-)
Sun Feb 12, 2017 5:19 am
Forum: General Discussion
Topic: ESP-WROOM-32 AT commands firmware
Replies: 60
Views: 86273

Re: ESP-WROOM-32 AT commands firmware

Rudi, can you see what i`m doing wrong? Hi Pawel, 1) If you use UDP as protokoll you do not need to set a Server Server you only create if you use "TCP" then you must connect the client with AT+CIPSTART="TCP".... so the command on SoftAP + Station mode AT+CIPSERVER=1,909 is not need. 2) edit: ( UDP...
by rudi ;-)
Sat Feb 11, 2017 12:55 am
Forum: Showcase
Topic: [info] ESP32-EVB board for IoT with Ethernet 100Mb interface..
Replies: 19
Views: 45293

Re: [info] ESP32-EVB board for IoT with Ethernet 100Mb interface..

ESP_igrr wrote:Interesting design! I wonder how will sharing flash pins with the SD card work in software.
get on this monday the board and will check this practical :)

best wishes
rudi ;-)
by rudi ;-)
Sat Feb 11, 2017 12:38 am
Forum: General Discussion
Topic: ESP-WROOM-32 AT commands firmware
Replies: 60
Views: 86273

Re: ESP-WROOM-32 AT commands firmware

one thing: if you end the transparent mode by send "+++" there is no "OK" or other from the standard AT firmware i helped me with this: after i send "+++" printf("+++"); i check this in the other side too and send a response "done" so the commander knows now, it can send the next AT Command. in the ...