Search found 252 matches

by jedie
Thu Jan 09, 2020 12:39 pm
Forum: ESP32 boards
Topic: asynycio as_GPS
Replies: 56
Views: 32485

Re: asynycio as_GPS

I use UbuntuMate: https://ubuntu-mate.org/ A good german forum/portal is: https://ubuntuusers.de/

Maybe it makes sence to create a german sub forum here? Ich fänd das toll ;)
by jedie
Thu Jan 09, 2020 6:20 am
Forum: Programs, Libraries and Tools
Topic: esptool error when building esp8266
Replies: 6
Views: 3655

Re: esptool error when building esp8266

Or my projects:
by jedie
Wed Jan 08, 2020 1:46 pm
Forum: ESP8266 boards
Topic: Creating larger ROMs
Replies: 23
Views: 15560

Re: Creating larger ROMs

Flash a premade filesystem to flash sounds interesting. (See also: viewtopic.php?f=2&t=7555 )

Has anybody tried to make this with LittleFS instead of FAT ?
by jedie
Wed Jan 08, 2020 12:04 pm
Forum: General Discussion and Questions
Topic: Best practise for setting up a device with static files
Replies: 2
Views: 2176

Re: Best practise for setting up a device with static files

Oh, this is exact the same problem I have, too. I will take a look into the pull request and peter's solution. Thanks for sharing this. EDIT: Okay i have take a look to https://github.com/micropython/micropython/issues/5394 and https://github.com/peterhinch/micropython_data_to_py But the Problem is ...
by jedie
Wed Jan 08, 2020 10:35 am
Forum: General Discussion and Questions
Topic: search for an inexpensive device to detect housebreaking
Replies: 19
Views: 10340

Re: search for an inexpensive device to detect housebreaking

And if you are very paranoid, you'd want to avoid using anything relying on wireless signals as those could be jammed, making your automations not triggering, except for those that run on the same controller. Easy fix: Every device should send a "alive" signal to server. Think the whole system shou...
by jedie
Tue Jan 07, 2020 5:10 pm
Forum: General Discussion and Questions
Topic: search for an inexpensive device to detect housebreaking
Replies: 19
Views: 10340

Re: search for an inexpensive device to detect housebreaking

The requirement is not that the battery should last for months. A week or two would be fine.
Requirement is not having to build too much by yourself. :P
by jedie
Tue Jan 07, 2020 3:43 pm
Forum: Programs, Libraries and Tools
Topic: esptool error when building esp8266
Replies: 6
Views: 3655

Re: esptool error when building esp8266

Maybe my docker solution can help you: https://github.com/jedie/docker-esp-open-sdk
by jedie
Tue Jan 07, 2020 7:08 am
Forum: General Discussion and Questions
Topic: test a micropython project?
Replies: 3
Views: 3000

Re: test a micropython project?

I now implement "integration" tests using asynctest and test the full uasyncio.start_server() stack :P Tests can look like this: async def test_non_well_form_request(self): response, server_message = await self.get_request( request_line=b"GET-totaly-bullshit-HTTP/1.1" ) assert response == 'HTTP/1.0 ...
by jedie
Mon Jan 06, 2020 6:29 pm
Forum: Development of MicroPython
Topic: Difference in mpy output on target versus host
Replies: 10
Views: 6243

Re: Difference in mpy output on target versus host

BramPeeters wrote:
Mon Jan 06, 2020 5:46 pm
I would like the understand why the PC compiled files are different from the target/device compiled ones :)
Can you explain how you compile the files on device? How do you compare? And witch board do you use?
by jedie
Mon Jan 06, 2020 6:04 pm
Forum: ESP8266 boards
Topic: How to disable autoconnect ("no ap found, reconnect after 1s")?
Replies: 3
Views: 3952

Re: How to disable autoconnect ("no ap found, reconnect after 1s")?

Ah, ok. I first thought the device was stuck in a loop and boot.py/main.py was not called. But this is not the case. I test it with this script: import machine import network import utime if __name__ == '__main__': print('Set wrong WiFi settings...') sta_if = network.WLAN(network.STA_IF) sta_if.acti...