Search found 121 matches

by ThomasChr
Sat May 11, 2019 7:41 am
Forum: ESP8266 boards
Topic: Powering relay with NodeMcu
Replies: 8
Views: 5388

Re: Powering relay with NodeMcu

The relay module should be controllable by an ESP8266 board. You power it via 5V from the esp board and use a 3.3V gpio pin to trigger it. It‘s not actually really specified to get switched by 3.3V instead of 5V but it should work. The think you struggle with right now is not voltage, it‘s current. ...
by ThomasChr
Fri May 10, 2019 10:33 am
Forum: MicroPython pyboard
Topic: The USR switch
Replies: 2
Views: 2395

Re: The USR switch

See the shematic: As far as I know there is no debouncing happening anywhere. You need to do it yourself.
by ThomasChr
Thu May 09, 2019 5:04 am
Forum: ESP8266 boards
Topic: Esp8266 in the post
Replies: 2
Views: 2105

Re: Esp8266 in the post

Do you have a link to the board?

Flash is typically 512 KB to 4 MB. But don‘t worry, even 512 KB are enough for starting.
by ThomasChr
Mon May 06, 2019 2:33 pm
Forum: ESP8266 boards
Topic: ESP8266 goes down after sometime [SOLVED]
Replies: 21
Views: 13703

Re: ESP8266 goes down after sometime

Make sure that you've got everything in try/catch-Blocks.
This code: https://github.com/ThomasChr/ESP8266-re ... er/main.py
is running since 13.01.2019 without a restart.

So the ESP8266 can be very stable.
by ThomasChr
Fri May 03, 2019 6:23 pm
Forum: ESP32 boards
Topic: "utime.strftime" problem converting Hour
Replies: 3
Views: 3238

Re: "utime.strftime" problem converting Hour

The time in the GPS is always UTC. The question is: What is localtime for you? The time module won‘t know that.
As far as I know the time module does not convert between time zones...
by ThomasChr
Wed Apr 24, 2019 8:00 am
Forum: Pyboard D-series
Topic: Pyboard D-series accelerometer-gyro ?
Replies: 2
Views: 2517

Re: Pyboard D-series accelerometer-gyro ?

1. Yes, far better!
2. It has no accelerometer, you‘ve got to buy one.
by ThomasChr
Thu Apr 18, 2019 3:26 pm
Forum: General Discussion and Questions
Topic: Problem with socket.getadrinfo() over mobile hotspot
Replies: 5
Views: 3561

Re: Problem with socket.getadrinfo() over mobile hotspot

I had the same problem, could you try to use the IP Address instead of the name?
by ThomasChr
Thu Apr 18, 2019 5:00 am
Forum: Programs, Libraries and Tools
Topic: MICS-6814 I2C grove
Replies: 2
Views: 2467

Re: MICS-6814 I2C grove

I didn‘t search for a library but I skimmed through the code of the Arduino Lib. Looks like easy I2C communication which you can easily port to Micropython if needed. Sp even without a library this is a simple task!