Search found 5 matches

by Tetje
Sun May 21, 2017 5:44 am
Forum: ESP8266 boards
Topic: Sending mails with esp8266 and micropython
Replies: 11
Views: 14772

Re: Sending mails with esp8266 and micropython

But whats the difference between sending a mail from the board and sending a mail with your favourite Mail client or Pythons smtplib for PCs?

Thanks for your tips.
by Tetje
Sat Sep 03, 2016 11:45 am
Forum: ESP8266 boards
Topic: Servo library
Replies: 28
Views: 39462

Re: Servo library

Thanks a lot, I thought I have to write it myself. I am you wondering that python is fast enough. ;) But when it is, it's great. Additionally I have a question an an idea. But is 3V3 enough, our do you connect the servo to a different level (with higher maximum current?) The thing that confues me in...
by Tetje
Sat Sep 03, 2016 11:05 am
Forum: ESP8266 boards
Topic: Sending mails with esp8266 and micropython
Replies: 11
Views: 14772

Re: Sending mails with esp8266 and micropython

Ok,

I'am a bit confused. How then does your mail client the send messsages to the mail provider? What would you advice to then? Perhaps an other protocoll that's ports are not blocked... and can send messages directly to your local PC, mobile phone, or tablet and than go into deep sleep?
by Tetje
Fri Sep 02, 2016 9:19 am
Forum: ESP8266 boards
Topic: Sending mails with esp8266 and micropython
Replies: 11
Views: 14772

Re: Sending mails with esp8266 and micropython

Thanks, for that many answers I read and tried a bit and what came up until now is (using posteo.de for email and trying STARTLS): import network sta_if = networrk.WLAN(network.STA_IF) import socket addr_info = socket.gettaddrinfo("posteo.de", 587) addr = addr_info[0][-1] s = socket.socket() s.conne...
by Tetje
Sat Aug 27, 2016 5:01 pm
Forum: ESP8266 boards
Topic: Sending mails with esp8266 and micropython
Replies: 11
Views: 14772

Sending mails with esp8266 and micropython

Hi, I am new to micropython. Until now I mostly used the Arduino and a bit PIC24. But I wanted to feel what it's like to use a more high level language than C/C++ on an microcontroller. So I searched for my nearly unused esp in the deepest deep of my tressure chest to flash the micropython onto it. ...