Search found 20 matches

by atux_null
Wed Aug 15, 2018 6:36 am
Forum: ESP8266 boards
Topic: inteface with switches
Replies: 8
Views: 4638

Re: inteface with switches

thanks for your reply. as i mentioned above i do not see anything to happen in the console. is it something wrong with the setup?
by atux_null
Tue Aug 14, 2018 11:38 am
Forum: ESP8266 boards
Topic: inteface with switches
Replies: 8
Views: 4638

Re: inteface with switches

thanks a lot for the reply. the code is a copy from adafruit. as i mentioned before i am trying to learn micropython and interfacing the esp with hardware, so i used their code. in order to run your code i am about to do the following: -in a linux shell connect through screen to the console of the e...
by atux_null
Tue Aug 14, 2018 10:19 am
Forum: ESP8266 boards
Topic: Unable to connect to ESP8266 via WIFI
Replies: 4
Views: 3475

Re: Unable to connect to ESP8266 via WIFI

i am using the latest (1.9.4) bin file form my esp8266 nodemcu.
I confirm that the AP mode works fine without any issues. It has been used in more that 13 devices that i have spread around.
by atux_null
Tue Aug 14, 2018 9:25 am
Forum: ESP8266 boards
Topic: inteface with switches
Replies: 8
Views: 4638

Re: inteface with switches

i was wondering if i am in a wrong state of repl and needs to be somewhere else. how can i overcome the problem and see the output on the screen please?
by atux_null
Mon Aug 13, 2018 12:35 pm
Forum: ESP8266 boards
Topic: inteface with switches
Replies: 8
Views: 4638

inteface with switches

i am learning how to interface esp8266 nodemcu with hardware. I am following the guide from https://learn.adafruit.com/micropython-hardware-digital-i-slash-o/digital-inputs . I have attached in a linux machine the board and through screen /dev/ttyUSB 115200 i got the console of it. The i connect a c...
by atux_null
Thu Aug 09, 2018 4:34 pm
Forum: ESP8266 boards
Topic: [SOLVED]cannot connect relay module
Replies: 7
Views: 5776

Re: cannot connect relay module

solved. instead of vin i had to connect to 3.3v pin.

Thanks a lot.
by atux_null
Wed Aug 08, 2018 2:55 pm
Forum: ESP8266 boards
Topic: [SOLVED]cannot connect relay module
Replies: 7
Views: 5776

Re: cannot connect relay module

no changes at all. :?
by atux_null
Wed Aug 08, 2018 2:52 pm
Forum: ESP8266 boards
Topic: multiple SSIDs
Replies: 5
Views: 4993

Re: multiple SSIDs

Lost it somewhere. It fails to connect and i am getting error: Started webrepl in normal mode Attempting connection to 'NETGEARHome25'... Traceback (most recent call last): File "main.py", line 46, in <module> File "main.py", line 32, in connect TypeError: function expected at most 2 arguments, got ...
by atux_null
Wed Aug 08, 2018 2:27 pm
Forum: ESP8266 boards
Topic: [SOLVED]cannot connect relay module
Replies: 7
Views: 5776

[SOLVED]cannot connect relay module

hi. i a taking my baby steps with micropython and esp8266 nodemcu. i am trying to connect a relay and play with it. https://imagebin.ca/v/4BUeYAVq321i and i have a 9V battery and a led connected. the circuit is: -a cable from the + side of the battery goes to the middle of the relay (C) -a cable fro...
by atux_null
Wed Aug 08, 2018 1:04 pm
Forum: ESP8266 boards
Topic: multiple SSIDs
Replies: 5
Views: 4993

Re: multiple SSIDs

thanks a lot for the reply. i tested the code and now i have the following code as main.py import gc import machine import webrepl import network import time webrepl.start() gc.collect() networks = ( ('NETGEARHome25', 'whateverpasswd', '192.168.1.89', '255.255.255.0','192.168.1.1', '8.8.8.8'), ('myo...