Making the world a better place, one Evil Mad Scientist at a time.
Maintenance notice:
These forum archives are read-only, and will be removed shortly.
Please visit our forums at their new location, https://www.evilmadscientist.com/forums/.
How reliable are the CP2021s? I've been unimpressed with at one or two of the generic USB/TTL adapters I've gotten my hands on. Tend to stick with FTDI which are a bit more. In this case it may not matter, since you can apparently get Leonardo co…
I haven't ever seen the code that runs the clock,though I've considered getting one at some point. Are you decent with programming in general? I ask because I personally don't find programming an arduino to be much different than programming anyth…
So, just having had the experience of dealing with two third-party USB to TTL boards and a Diavolino in combination, maybe I can contribute something here. First, I may be reading you wrong, but you may be thinking about this in the wrong way. Tha…
The AVR is working in the Diavolino. It's not working in the breadboard. It's hard to tell exactly what's not working, except that when I remove it from the board, and place it into the circuit on the breadboard, which I think is correct, it isn't…
The leostick does appear to have some fundamental problems with the way the arduino-as-isp stuff is handled, and I think this shouldn't be a huge problem for me now that I can get code onto the Diavolino, which ought to be much more usual in that re…
Yes, I suppose it should. Well, it turns out that things aren't quite as bad as I thought they may be. No electrical problems with the board at all. The reason that it wouldn't program is that the TTL serial adapter I was trying to use (which is a…
I'll check those perhaps later tonight, then. The 10k resistor is a pull-up for the reset line, right? So should I be able to tell for sure that it's working by actually testing the current through the reset pin? Obviously I can check the solder …
Well, I'm beginning to wonder whether this thing has a bootloader on it. Just tried it with an FTDI board, and depending on which way I arrange the RX/TX pins, I get either a complete hang and a data light that's perpetually on, or an error stk500_…
Also, good news. It looks like I just got my TTL stuff today. I should be able to do a proper test shortly. Still, I wonder what I might have been doing wrong here. Anyway, we'll see how it goes.
Chris
What might it mean if the delay isn't noticeable? As I was saying, it seems to start right away and just keep going. I hadn't been too worried about it, given that I have not been able to try programming it correctly yet, but could this be an indi…
Well, you'd be able to do it a row at a time, where if you were doing 84 pixel rows, each set of two rows would have a byte split between them, so it would be equally easy to scroll off the edge by two rows, but it would be kind of a pain to do one.…
That makes some sense now that you mention it. Fonts tend to be stretched horizontally much more often than vertically. I do also note that 48 is divisible evenly by eight, while 84 is not. This means that if you're obsessive-compulsive enough to…
I should also note that the least significant bit of the number seems to become the top of the column, and then following pixels proceed downward to the most significant bit.
Chris
So, after going back and looking at the library, things are slightly stranger than I thought. The drawBitmap function assumes that each byte
you hand it is a column (yes, really) of 8 bits, but the columns are
written out from left to right, then…
Thanks Windell. I did go through the tutorial, and everything works as advertised, but it doesn't seem to cover this subject. I haven't tried their forum, but I did look through it to see if anyone else was talking about this, which they werent. …