SparkFun Serial 7 Segment Display

For general discussion related FlowStone
Post Reply
User avatar
support
Posts: 151
Joined: Fri Sep 07, 2012 2:10 pm

SparkFun Serial 7 Segment Display

Post by support »

If anyone's interested we have just added support for these nice little LED displays:

SparkFun LED Display LR.jpg
SparkFun LED Display LR.jpg (68.93 KiB) Viewed 24417 times


Here a test project: http://www.dsprobotics.com/support/viewtopic.php?f=81&t=1143
User avatar
trogluddite
Posts: 1730
Joined: Fri Oct 22, 2010 12:46 am
Location: Yorkshire, UK

Re: SparkFun Serial 7 Segment Display

Post by trogluddite »

Hmm, that does look rather handy actually.

I'm hacking apart an XBox controller to make some stomp pedals for my guitar FX (with FS acting as the Xbox->MIDI interface, naturally), but was wondering what to do for a patch number display. Looks like I just found a very simple solution! :)
All schematics/modules I post are free for all to use - but a credit is always polite!
Don't stagnate, mutate to create!
infuzion
Posts: 109
Joined: Tue Jul 13, 2010 11:55 am
Location: Kansas City, USA, Earth, Sol

Re: SparkFun Serial 7 Segment Display

Post by infuzion »

Hey support, why do you use all those extraneous Float, String, & Int primitives all over the place please?
infuzion
Posts: 109
Joined: Tue Jul 13, 2010 11:55 am
Location: Kansas City, USA, Earth, Sol

Re: SparkFun Serial 7 Segment Display

Post by infuzion »

infuzion wrote:Hey support, why do you use all those extraneous Float, String, & Int primitives all over the place please?
Urm, anyone? Why have inline primitives like that please?
alexalthauser
Posts: 9
Joined: Thu Jan 20, 2011 7:29 am

Re: SparkFun Serial 7 Segment Display

Post by alexalthauser »

Very cool! I am looking forward to using that in my next project. Could you show it hooked up to the flowboard? I am wondering if it is much easier, more complicated, or about the same.. :shock:
User avatar
support
Posts: 151
Joined: Fri Sep 07, 2012 2:10 pm

Re: SparkFun Serial 7 Segment Display

Post by support »

infuzion wrote:
infuzion wrote:Hey support, why do you use all those extraneous Float, String, & Int primitives all over the place please?
Urm, anyone? Why have inline primitives like that please?


It's just for visual error checking whilst developing. Once running in an EXE or at GUI level they have no CPU load.
infuzion
Posts: 109
Joined: Tue Jul 13, 2010 11:55 am
Location: Kansas City, USA, Earth, Sol

Re: SparkFun Serial 7 Segment Display

Post by infuzion »

support wrote:
infuzion wrote:
infuzion wrote:Hey support, why do you use all those extraneous Float, String, & Int primitives all over the place please?
Urm, anyone? Why have inline primitives like that please?
It's just for visual error checking whilst developing. Once running in an EXE or at GUI level they have no CPU load.
Thanks for the reply.
I was thinking more of a memory allocation issue; don't each of those use a new pointer? & doesn't all the ins have to check for multi-line addition?

Plus, there is a file-size increase. Perhaps small at first, but adds up when you have 100s of these things. I usually just NOT make the value-primitves as throughs, & delete them right away to save space & increase readability.
User avatar
support
Posts: 151
Joined: Fri Sep 07, 2012 2:10 pm

Re: SparkFun Serial 7 Segment Display

Post by support »

Well yes there would be some impact in those areas but this is just a test project remember.

As you say you can strip out the excess when you're done testing.
infuzion
Posts: 109
Joined: Tue Jul 13, 2010 11:55 am
Location: Kansas City, USA, Earth, Sol

Re: SparkFun Serial 7 Segment Display

Post by infuzion »

support wrote:Well yes there would be some impact in those areas but this is just a test project remember.
As you say you can strip out the excess when you're done testing.
I thought it was just for testing :)
But my point is, people will use this as an "authoritative" example on how it should be done, & mimic exactly for their own files.
Post Reply