Search found 15 matches

by thetreerat
Fri Jun 02, 2017 3:41 pm
Forum: General Discussion and Questions
Topic: RFM65 radio with MicroPython
Replies: 13
Views: 11985

Re: RFM65 radio with MicroPython

@qjb

Where you planning on reworking the project https://github.com/etrombly/RFM69 that you posted about?

I have needs for a lora radio support and would be willing to help port and test if your going to work on it.

Hal
by thetreerat
Tue May 23, 2017 3:08 pm
Forum: General Discussion and Questions
Topic: uasyncio
Replies: 17
Views: 21458

Re: uasyncio

@Peter,

I saw that you mention that in 1.9 uasyncio was going to be code frozen.

Does this mean that you will no longer have to install uasyncio on a standard build?

Hal
by thetreerat
Sat May 20, 2017 12:18 am
Forum: ESP8266 boards
Topic: strange behavior on esp board
Replies: 2
Views: 2801

strange behavior on esp board

sometimes I get this output in the repl

LmacRxBlk:1

once it starts it repeats about every second, it even continues if you stop the program with a control c. seems the only way to stop it is with the reset buttion.

how do I find my bug that causing this?

Hal
by thetreerat
Thu May 18, 2017 3:50 pm
Forum: General Discussion and Questions
Topic: Lora support in MP?
Replies: 4
Views: 4333

Re: Lora support in MP?

you can use the feather wing from adafruit to get the hardware, but I don't know if anyone has converted the libraries from adafruit to micropython. They also have a break out boards for the same chips that the feather wing is based on. it was something I was going to start looking into soon as I al...
by thetreerat
Thu May 18, 2017 3:44 pm
Forum: General Discussion and Questions
Topic: Multi-threading
Replies: 2
Views: 8210

Re: Multi-threading

I have been using uasyncio in my projects on the esp3288 board from adafruit. it based on the the info in peter's guide. it works for me as I do not need preemptive multitasking. his guide is easier to understand. but if your looking for another example of use you can look at https://github.com/thet...
by thetreerat
Thu May 04, 2017 8:44 pm
Forum: General Discussion and Questions
Topic: frozen code limit
Replies: 1
Views: 2003

frozen code limit

okay I think today I ran head long into the limits of irom space when I try to compile a bin. I am getting this message with make: xtensa-lx106-elf-ld: region `irom0_0_seg' overflowed by 1328 bytes dose anyone here have a suggestion. if I remove modules from my project it will compile but that's not...
by thetreerat
Tue May 02, 2017 6:12 pm
Forum: General Discussion and Questions
Topic: Frozen code images change version on esp8266
Replies: 4
Views: 3772

Re: Frozen code images change version on esp8266

no that was not the question but very helpful.

thanks.
Hal
by thetreerat
Tue May 02, 2017 2:31 pm
Forum: General Discussion and Questions
Topic: uasyncio
Replies: 17
Views: 21458

Re: uasyncio

Peter,

thanks for help with the global variable. I got that working.

I place the callback as a standalone function in my flowmeter.py file, added the flowCount to the file and now I can access the var in the class method and the callback.

Hal
by thetreerat
Tue May 02, 2017 2:23 pm
Forum: General Discussion and Questions
Topic: Frozen code images change version on esp8266
Replies: 4
Views: 3772

Frozen code images change version on esp8266

as a systems admin kind of guy. when I create a firmware with frozen code I get the boot text with the build number that I built my code from so I can't tell after it loaded on a board that it contains my frozen code without doing an import. So my questions are 1. Is bad form for me to change the bo...
by thetreerat
Mon May 01, 2017 2:08 pm
Forum: General Discussion and Questions
Topic: Control 2 relays with 1 button
Replies: 4
Views: 4846

Re: Control 2 relays with 1 button

sorry this would work better and you use it in place of tagglestate method in the buttons.py class states(object): def __init__(self,states=False): if states: self.states = ['forward','off','reverse'] else: self.states = states def NextState(self): """Toggle state""" state = states.pop() self.states...