prologic | pdurbin: I signed up and created a profile for myself | 00:16 |
---|---|---|
prologic | and tagged myself in circuits | 00:16 |
pdurbin | prologic: oh, great | 00:18 |
pdurbin | prologic: here's the problem I'm seeing: https://github.com/openhatch/oh-mainline/issues/1435#issuecomment-103437611 | 00:20 |
pdurbin | but hopefully we won't have these problems with circuits | 00:20 |
prologic | hopefully | 00:25 |
prologic | you already added a bug tracker for the project right? | 00:25 |
pdurbin | yeah, tried | 00:26 |
prologic | kk | 00:26 |
prologic | we'll see if it works I guess | 00:26 |
pdurbin | they do a crawl every night, I think | 00:26 |
prologic | how long till the crawler hits the issues tracker? | 00:26 |
pdurbin | should know soon | 00:26 |
prologic | ahh | 00:26 |
prologic | kk | 00:26 |
prologic | nps :) | 00:26 |
pdurbin | they have logs somewhere | 00:26 |
pdurbin | http://inside.openhatch.org/crawl-logs/ | 00:27 |
pdurbin | hmmm. "run_importer.sh: line 56: syntax error: unexpected end of file" | 00:27 |
prologic | whoops | 00:28 |
prologic | who's managing openhatch? | 00:29 |
prologic | what's it all written in? | 00:29 |
pdurbin | prologic: it's written in Python | 00:32 |
pdurbin | ah shell, apparently :) | 00:32 |
pdurbin | and* | 00:35 |
prologic | cool | 00:37 |
prologic | I should help out :) | 00:37 |
prologic | can't even find run_importer.sh in any of hte repos | 00:39 |
prologic | but admittedly I only have a quick cursory glance | 00:39 |
pdurbin | me neither. I even checked https://github.com/openhatch/oh-bugimporters | 00:59 |
pdurbin | prologic: sure! maybe you can help. let's see what happens to that issue I just opened | 01:00 |
prologic | *nods* | 01:00 |
pdurbin | prologic: links improved with titles? what links? | 01:27 |
prologic | in the answers I provided | 01:30 |
prologic | can you see them? | 01:30 |
pdurbin | the links in your answers seem fine. they're clickable | 01:30 |
pdurbin | I just added a logo: http://openhatch.org/projects/circuits | 01:30 |
pdurbin | and a link to the homepage | 01:31 |
pdurbin | and added the primary language | 01:31 |
prologic | ahh | 01:34 |
prologic | lovely :) thanks | 01:34 |
pdurbin | oh sure | 01:34 |
pdurbin | prologic: I was pretty brutally honest in my "involvement description": http://openhatch.org/people/pdurbin/ :) | 01:35 |
prologic | haha | 01:38 |
prologic | but circuits *is* used by Dataverse API(s) right? | 01:38 |
pdurbin | nope | 01:39 |
prologic | oh? | 01:39 |
prologic | how is it used (if at all)? | 01:39 |
pdurbin | I've never used circuits. | 01:39 |
pdurbin | maybe I'll write an IRC bot | 01:39 |
pdurbin | haven't gotten around to it | 01:39 |
prologic | haha okay :) | 01:43 |
prologic | just do it; tonight :) | 01:43 |
pdurbin | meh, working on my talk: Build Tools at IQSS - http://bl.ocks.org/pdurbin/03a76a26bd325af0b17e | 01:45 |
prologic | ahh yeap | 01:56 |
prologic | pdurbin: I think I found that "Forum style" setting for the circuits-users google groups | 02:04 |
prologic | Have a look? I just change dit | 02:04 |
pdurbin | prologic: yep. good job | 02:19 |
prologic | sweet | 02:21 |
prologic | can close issue now? :) | 02:21 |
pdurbin | yep: https://github.com/circuits/circuits/issues/10#issuecomment-105106595 | 03:02 |
prologic | awesome :) | 03:07 |
*** Zimsky has quit IRC | 07:40 | |
*** Zimsky has joined #circuits | 07:42 | |
*** Osso has joined #circuits | 10:05 | |
riot | hmm, how do i exempt components from the debugger? the serialport is nooooooisy ;) | 12:06 |
prologic | haha | 12:14 |
prologic | you can add channels and event names to the Debugger class before you instantiate it | 12:14 |
prologic | | :var IgnoreEvents: list of events (str) to ignore | 12:14 |
prologic | | :var IgnoreChannels: list of channels (str) to ignore | 12:14 |
prologic | | :var enabled: Enabled/Disabled flag | 12:14 |
prologic | I'm not sure that it's possible any other way tbh | 12:15 |
prologic | since the Debugger uses a global event handler | 12:15 |
prologic | -but- | 12:15 |
prologic | you may be able to set a higher priority one :) | 12:15 |
prologic | @handler(priority=1) | 12:15 |
prologic | might be higher than: @handler() | 12:15 |
prologic | :) | 12:15 |
riot | i can't somehow get the opened event in my serial-component owning controller :/ | 12:17 |
riot | http://pastebin.com/PYd9wXU9 | 12:21 |
riot | i tried with various other substitutions, e.g. waiting for the actual "opened" event.. nil response | 12:21 |
riot | yeah, debugger.IgnoreEvents.extend("write", "_write") helps a lot | 12:25 |
riot | it works, if i tell the serial port to use the machineroom channel, but i'd really like to separate the port a bit more, because i might end up having multiple ports again | 12:46 |
riot | (scrap that, i WILL have multiple ports, as there are a few other serial devices i intend to read. | 12:46 |
riot | one of the next followup components is a magnetic compass and accelerometer | 12:46 |
riot | gpsm, etc. - everything necessary for navigation ;) | 12:47 |
pdurbin | prologic: no volunteer opportunties indexed yet: https://openhatch.org/projects/circuits | 14:18 |
*** Osso has quit IRC | 14:20 | |
riot | i think, i'll add a terminator to circuits.io.serial (default="\r\n" aka crlf, so you can filter packets by using this one or a custom one (i think, crlf is preeetty common ;)) | 19:51 |
riot | but my µC uses "*" as terminator right now | 19:52 |
*** Coldblackice_ has joined #circuits | 20:12 | |
prologic | riot, channel="port" | 20:48 |
prologic | not channels | 20:48 |
prologic | riot, good idea re terminator; send us a pullie :) | 20:49 |
prologic | pdurbin, does this mean the crawler is still broken potentially? | 20:49 |
pdurbin | prologic: I think it worked for a few weeks | 21:54 |
prologic | hmm | 23:22 |
Generated by irclog2html.py 2.11.0 by Marius Gedminas - find it at mg.pov.lt!