Search found 83 matches

by ajocius
Thu Jan 03, 2019 1:23 pm
Forum: ESP8266 boards
Topic: uPyLoader - simple file transfer and communication
Replies: 54
Views: 73257

Re: uPyLoader - simple file transfer and communication

thanks cyberlab, will test it once home. Is there any way to change from access point to station (so that I can connect to it using ip that is allocated by dhcp on my router)?
by ajocius
Tue Jan 01, 2019 4:05 pm
Forum: ESP8266 boards
Topic: uPyLoader - simple file transfer and communication
Replies: 54
Views: 73257

Re: uPyLoader - simple file transfer and communication

just figured out myself, that I was missing webrepl installed. So added it to boot.py and trying to connect, however, still not successfully. Any other changes?
by ajocius
Tue Jan 01, 2019 3:48 pm
Forum: ESP8266 boards
Topic: uPyLoader - simple file transfer and communication
Replies: 54
Views: 73257

Re: uPyLoader - simple file transfer and communication

Hey, trying uPyloader and am able to connect to ESP32 board via USB. I also wanted to try wifi connection. I do know IP address to my ESP32, but what port should I use? I left default port 8266, that was there after installing uPyLoader, but that gave me error message.Perhaps it is not that simple a...
by ajocius
Tue Jan 01, 2019 3:37 pm
Forum: ESP32 boards
Topic: uPyCraft looses connection to ESP32
Replies: 13
Views: 10709

uPyCraft looses connection to ESP32

Hi, I have followed great tutorial to get short micropython code on ESP32 from here: https://randomnerdtutorials.com/micropython-mqtt-esp32-esp8266/ After trying and failing for a while I got it working finally. However, during that process I came several times to the situation where uPyCraft was no...
by ajocius
Wed May 30, 2018 12:23 pm
Forum: ESP32 boards
Topic: ds18x20 on ESP32
Replies: 2
Views: 2679

Re: ds18x20 on ESP32

I use following code to read ds18x20 sensor data with original build: from time import sleep from machine import Pin, ADC import machine import micropython import onewire, ds18x20 import network, utime t1 = machine.Pin(17) # DS18B20 temp sensor device is on GPIO17 ds = ds18x20.DS18X20(onewire.OneWir...
by ajocius
Fri May 04, 2018 9:42 am
Forum: ESP32 boards
Topic: Long range WiFi
Replies: 3
Views: 3277

Re: Long range WiFi

Found the reason... Power cable connection to ESP32 was not tight enough... I had red LED on ESP32 on, so I assumed all is fine with power. Replaced cable, made sure it is plugged 100% in and tight and now it is working with distance aprox 10m. Did not test longer distance, as did not need it. Sorry...
by ajocius
Thu May 03, 2018 7:21 pm
Forum: ESP32 boards
Topic: Long range WiFi
Replies: 3
Views: 3277

Long range WiFi

Is there any Long Range Wifi on ESP32? Mine is connecting to Wifi only when it is close by. Tried 1-2 meters, it works. When i move away 5 meters, does not work. Not sure if sending or receiving does not work, as i try to send mqtt message to it and get response back. My final placement is around 10...
by ajocius
Fri Apr 20, 2018 10:46 am
Forum: ESP32 boards
Topic: greenhouse sensors set-up
Replies: 6
Views: 4530

Re: greenhouse sensors set-up

ok, I will try to redo code with Loboris port, need to figure out what needs to be changed in my code, so this will take time. At the same time I would like about other options that I have, would be great to hear comments on those: - Run loop on micropython code to send sensor data to MQTT every 10 ...
by ajocius
Fri Apr 13, 2018 6:40 am
Forum: ESP32 boards
Topic: greenhouse sensors set-up
Replies: 6
Views: 4530

Re: greenhouse sensors set-up

I am using official firmware. Can I just flash Loboris firmware, copy my *.py file with code and test it? Or will I need to change code due to some syntax differencies?
by ajocius
Wed Apr 11, 2018 8:21 am
Forum: ESP32 boards
Topic: greenhouse sensors set-up
Replies: 6
Views: 4530

greenhouse sensors set-up

I am very close to complete what I was making. Very close, but no cigar yet :) I have connected temp, humidity and soil moisture sensors to ESP32 running micropython code it communicates sensor values to MQTT server running on Raspberry Pi, that also runs MySQL and Node Red. Node Red triggers mqtt m...