Home » Simpit Discussion » simpits-tech » Re: [simpits-tech] Arduino, Part Deaux...
| Re: [simpits-tech] Arduino, Part Deaux... [message #2078] |
Tue, 22 February 2011 14:08  |
LawnDart Messages: 94 Registered: March 2009 Location: Seattle, WA |
Member |
|
|
This may be where my programming knowledge falls short but I'm not sure you can set a frequency per I/O pin. (That's where i was going originally before the thin trail of smoke erupted.)
The PWM outputs I *think* are frequency-adjustable, but hadn't gotten there yet. (And I may still pursue that route)
One problem I ran into with the original circuit was that the Freq-to-Aircore driver chips had a non-linear response curve. (More like a logarithmic response curve and I would probably need to build reference tables to remove that log behavior)
Gotta crack a few eggs to make an omelet I guess.
Now, for the serial plan... What I hope for is to have a single data line shared by all CS4122 chips , with multiple CLK lines. (One per chip)
I love research! :-0
----- Original Message -----
From: raysot@comcast.net
To: "Simulator Cockpit Builder's List" <simpits-tech@simpits.org>
Sent: Tuesday, February 22, 2011 1:50:49 PM
Subject: Re: [simpits-tech] Arduino, Part Deaux...
Got me some of these:
CS4122
Mouser still has them. I've never soldered a SOIC device before... looks like a trip to Fryes is warranted!
----- Original Message -----
From: "Gene Buckle" <geneb@deltasoft.com>
To: "Simulator Cockpit Builder's List" <simpits-tech@simpits.org>
Sent: Tuesday, February 22, 2011 12:55:14 PM
Subject: Re: [simpits-tech] Arduino, Part Deaux...
On Tue, 22 Feb 2011, raysot@comcast.net wrote:
>
> For data to work, it must be beautiful :-)
>
> Yep! Gonna fight those H-Bridges every step of the way.
>
> The Serial link seems a more elegant solution. I could [probably] get
> the arduino to work supporting multiple h-bridges but I think the timing
> issues would really be a problem (for me) since the Arduino is a
> single-threaded system.
>
Well keep in mind that if memory serves, you don't need multiple threads
to drive those things. You set a value on the port and it'll stay there
until you tell it otherwise. I could be wrong of course - I haven't had
time to play with them yet.
What chip did you find for driving the air-cores serially?
g.
> In my upcoming attempt I'm excited about grabbing a byte, then sending
> it to the appropriate aircore driver. Seems simple...
>
> (As long as I don't smoke check Arduino #2 things should go much better!)
>
It's a good reason to keep some of the ATMega328 PDIP based versions of
the Arduino handy. If you cook it, you just stick the bootloader on a new
one and go. You'll need to build an ICP cable or have an STK500 (or
similar) programmer to burn the bootloader on it though.
g.
--
Proud owner of F-15C 80-0007
http://www.f15sim.com - The only one of its kind.
http://www.simpits.org/geneb - The Me-109F/X Project
ScarletDME - The red hot Data Management Environment
A Multi-Value database for the masses, not the classes.
http://www.scarletdme.org - Get it _today_!
Political correctness is a doctrine, fostered by a delusional, illogical
minority, and rabidly promoted by an unscrupulous mainstream media, which
holds forth the proposition that it is entirely possible to pick up a turd
by the clean end.
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
Ray
www.EllieAvionics.com
|
|
|
| Re: [simpits-tech] Arduino, Part Deaux... [message #2080 is a reply to message #2078 ] |
Tue, 22 February 2011 14:42   |
Gene Buckle Messages: 1067 Registered: January 2009 |
Senior Member Administrator |
|
|
On Tue, 22 Feb 2011, raysot@comcast.net wrote:
> Now, for the serial plan... What I hope for is to have a single data
> line shared by all CS4122 chips , with multiple CLK lines. (One per
> chip)
Not having looked at the specs, I would recommend using the chip enable
pin if one is present. That lets you keep common data & clock lines
across multiple parts. If CE isn't set for the part in question, it'll
ignore the clock & data lines.
g.
--
Proud owner of F-15C 80-0007
http://www.f15sim.com - The only one of its kind.
http://www.simpits.org/geneb - The Me-109F/X Project
ScarletDME - The red hot Data Management Environment
A Multi-Value database for the masses, not the classes.
http://www.scarletdme.org - Get it _today_!
Political correctness is a doctrine, fostered by a delusional, illogical
minority, and rabidly promoted by an unscrupulous mainstream media, which
holds forth the proposition that it is entirely possible to pick up a turd
by the clean end.
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
|
|
|
| Re: [simpits-tech] Arduino, Part Deaux... [message #2081 is a reply to message #2080 ] |
Tue, 22 February 2011 16:11   |
LawnDart Messages: 94 Registered: March 2009 Location: Seattle, WA |
Member |
|
|
Chip has a Si, So, CLK and CS so hopefully that will suffice.
Just noticed that the full 360-degree gauge output has some interesting serial data input requirements.
Major Gauge (360°)
MSB LSB
D11 D10 D9 D8 D7 D6 D5 D4 D3 D2 D1 D0
|Gauge |Quadrant| Data |
|Select|Select | |
...that should be fun......
----- Original Message -----
From: "Gene Buckle" <geneb@deltasoft.com>
To: "Simulator Cockpit Builder's List" <simpits-tech@simpits.org>
Sent: Tuesday, February 22, 2011 2:42:18 PM
Subject: Re: [simpits-tech] Arduino, Part Deaux...
On Tue, 22 Feb 2011, raysot@comcast.net wrote:
> Now, for the serial plan... What I hope for is to have a single data
> line shared by all CS4122 chips , with multiple CLK lines. (One per
> chip)
Not having looked at the specs, I would recommend using the chip enable
pin if one is present. That lets you keep common data & clock lines
across multiple parts. If CE isn't set for the part in question, it'll
ignore the clock & data lines.
g.
--
Proud owner of F-15C 80-0007
http://www.f15sim.com - The only one of its kind.
http://www.simpits.org/geneb - The Me-109F/X Project
ScarletDME - The red hot Data Management Environment
A Multi-Value database for the masses, not the classes.
http://www.scarletdme.org - Get it _today_!
Political correctness is a doctrine, fostered by a delusional, illogical
minority, and rabidly promoted by an unscrupulous mainstream media, which
holds forth the proposition that it is entirely possible to pick up a turd
by the clean end.
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
Ray
www.EllieAvionics.com
|
|
|
| Re: [simpits-tech] Arduino, Part Deaux... [message #2082 is a reply to message #2081 ] |
Tue, 22 February 2011 19:08   |
Gene Buckle Messages: 1067 Registered: January 2009 |
Senior Member Administrator |
|
|
On Wed, 23 Feb 2011, raysot@comcast.net wrote:
>
> Chip has a Si, So, CLK and CS so hopefully that will suffice.
>
> Just noticed that the full 360-degree gauge output has some interesting serial data input requirements.
>
> Major Gauge (360°)
> MSB LSB
>
> D11 D10 D9 D8 D7 D6 D5 D4 D3 D2 D1 D0
> |Gauge |Quadrant| Data |
> |Select|Select | |
>
> ...that should be fun......
I suspect "CS" == Chip Select. :)
Pssst. Hey buddy! Got some neat h-bridges here. One owner! Only driven
on Sundays! :)
g.
--
Proud owner of F-15C 80-0007
http://www.f15sim.com - The only one of its kind.
http://www.simpits.org/geneb - The Me-109F/X Project
ScarletDME - The red hot Data Management Environment
A Multi-Value database for the masses, not the classes.
http://www.scarletdme.org - Get it _today_!
Political correctness is a doctrine, fostered by a delusional, illogical
minority, and rabidly promoted by an unscrupulous mainstream media, which
holds forth the proposition that it is entirely possible to pick up a turd
by the clean end.
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
|
|
|
| Re: [simpits-tech] Arduino, Part Deaux... [message #2083 is a reply to message #2082 ] |
Tue, 22 February 2011 21:56   |
LawnDart Messages: 94 Registered: March 2009 Location: Seattle, WA |
Member |
|
|
No! NO H-Bridges! :-)
I also have on hand some MLX10407 chips that don't use that (soon to be)
ugly "Quadrant" datatype. I might give those a whirl as well...
(Still the SOIC form-factor so Fryes still requires a visit)
New Arduino board inbound! :-D
http://www.presto.co.uk/pdf/data-0194.pdf
On 2/22/2011 7:08 PM, Gene Buckle wrote:
> On Wed, 23 Feb 2011, raysot@comcast.net wrote:
>
>>
>> Chip has a Si, So, CLK and CS so hopefully that will suffice.
>>
>> Just noticed that the full 360-degree gauge output has some
>> interesting serial data input requirements.
>> Major Gauge (360°)
>> MSB LSB
>>
>> D11 D10 D9 D8 D7 D6 D5 D4 D3 D2 D1 D0
>> |Gauge |Quadrant| Data | |Select|Select
>> | |
>> ...that should be fun......
>
> I suspect "CS" == Chip Select. :)
>
> Pssst. Hey buddy! Got some neat h-bridges here. One owner! Only
> driven on Sundays! :)
>
> g.
>
>
> _______________________________________________
> Simpits-tech mailing list
> Simpits-tech@simpits.org
> http://www.simpits.org/mailman/listinfo/simpits-tech
> To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
Ray
www.EllieAvionics.com
|
|
|
| Re: [simpits-tech] Arduino, Part Deaux... [message #2088 is a reply to message #2082 ] |
Wed, 23 February 2011 20:13   |
LawnDart Messages: 94 Registered: March 2009 Location: Seattle, WA |
Member |
|
|
Hmm... just figured out I can use Arduino to control some BCD to 7Seg
decoder/Drivers..... (like the 7447 / 7448)
Is it sad that I didn't even have to look those chip numbers up? Even
that the 7447 drives common cathode displays while the 7448 drives
common anode....
I used to spend my allowance at Radio shack as a kid.... I've long
forgotten the pinouts, but I could probably still recall the 7400 NAND
gate pinouts if I really tried :-)
On 2/22/2011 7:08 PM, Gene Buckle wrote:
> On Wed, 23 Feb 2011, raysot@comcast.net wrote:
>
>>
>> Chip has a Si, So, CLK and CS so hopefully that will suffice.
>>
>> Just noticed that the full 360-degree gauge output has some
>> interesting serial data input requirements.
>> Major Gauge (360°)
>> MSB LSB
>>
>> D11 D10 D9 D8 D7 D6 D5 D4 D3 D2 D1 D0
>> |Gauge |Quadrant| Data | |Select|Select
>> | |
>> ...that should be fun......
>
> I suspect "CS" == Chip Select. :)
>
> Pssst. Hey buddy! Got some neat h-bridges here. One owner! Only
> driven on Sundays! :)
>
> g.
>
>
> _______________________________________________
> Simpits-tech mailing list
> Simpits-tech@simpits.org
> http://www.simpits.org/mailman/listinfo/simpits-tech
> To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
Ray
www.EllieAvionics.com
|
|
|
| Re: [simpits-tech] Arduino, Part Deaux... [message #2109 is a reply to message #2080 ] |
Wed, 02 March 2011 10:56   |
LawnDart Messages: 94 Registered: March 2009 Location: Seattle, WA |
Member |
|
|
The (new) Arduino is up and running, spitting data out to both an LCD panel and also sending a 12-bit data stream using CS, CLK and DATA outputs. I have it cranked up pretty fast.. should be sending about 30 updates a second.. should be more than enough for smoothness.
Tonight I solder the CS4122 SOIC chip to a makeshift breadboard breakout card and start wiring things up.
I know what happened to my original Arduino... My breadboard power rails had (had) a ground, +5vdc and +12vdc rails. I was wiring up a switch, and the circuit called for a 1m pull-up resistor. I mistakenly plugged in a 100-ohm into the 12vdc rail.
Now I have the rails a bit more segregated and 12vdc is isolated to a single rail so it's out of the way and not as tempting.
----- Original Message -----
From: "Gene Buckle" <geneb@deltasoft.com>
To: "Simulator Cockpit Builder's List" <simpits-tech@simpits.org>
Sent: Tuesday, February 22, 2011 2:42:18 PM
Subject: Re: [simpits-tech] Arduino, Part Deaux...
On Tue, 22 Feb 2011, raysot@comcast.net wrote:
> Now, for the serial plan... What I hope for is to have a single data
> line shared by all CS4122 chips , with multiple CLK lines. (One per
> chip)
Not having looked at the specs, I would recommend using the chip enable
pin if one is present. That lets you keep common data & clock lines
across multiple parts. If CE isn't set for the part in question, it'll
ignore the clock & data lines.
g.
--
Proud owner of F-15C 80-0007
http://www.f15sim.com - The only one of its kind.
http://www.simpits.org/geneb - The Me-109F/X Project
ScarletDME - The red hot Data Management Environment
A Multi-Value database for the masses, not the classes.
http://www.scarletdme.org - Get it _today_!
Political correctness is a doctrine, fostered by a delusional, illogical
minority, and rabidly promoted by an unscrupulous mainstream media, which
holds forth the proposition that it is entirely possible to pick up a turd
by the clean end.
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
Ray
www.EllieAvionics.com
|
|
|
| [simpits-tech] Air-core driver (Was: Arduino, Part Deaux...) [message #2119 is a reply to message #2078 ] |
Thu, 03 March 2011 13:48   |
Roberto Waltman Messages: 45 Registered: August 2010 |
Member |
|
|
On Tue, February 22, 2011 5:08 pm, raysot@comcast.net wrote:
>
> Gotta crack a few eggs to make an omelet I guess.
>
> Now, for the serial plan... What I hope for is to have a single data line
> shared by all CS4122 chips , with multiple CLK lines. (One per chip)
>
No, that would be the wrong omelet.
The SPI way is one data line to all chips, (or chain of chips,) one clock
line to all chips, and one CS *per* chip.
Only the chip that has an active CS will accept the data, all others will
ignore it.
(And again, if you have different chips, CS may be active high for some
and active low for others.)
See the wikipedia page I pointed to before and a few links from it.
--
Roberto Waltman
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
|
|
|
| Re: [simpits-tech] Air-core driver (Was: Arduino, Part Deaux...) [message #2120 is a reply to message #2119 ] |
Thu, 03 March 2011 19:59   |
LawnDart Messages: 94 Registered: March 2009 Location: Seattle, WA |
Member |
|
|
Roberto, you are the MAN!
http://www.youtube.com/watch?v=K1krpXFGASQ
I simply reversed my bitwise AND operation to start with the MSB and viola!
Thank you so much!
Gene.. I don't need no stinking H-Bridge! ;-)
Ray
On 3/3/2011 1:48 PM, Roberto Waltman wrote:
> On Tue, February 22, 2011 5:08 pm, raysot@comcast.net wrote:
>> Gotta crack a few eggs to make an omelet I guess.
>>
>> Now, for the serial plan... What I hope for is to have a single data line
>> shared by all CS4122 chips , with multiple CLK lines. (One per chip)
>>
> No, that would be the wrong omelet.
>
> The SPI way is one data line to all chips, (or chain of chips,) one clock
> line to all chips, and one CS *per* chip.
>
> Only the chip that has an active CS will accept the data, all others will
> ignore it.
>
> (And again, if you have different chips, CS may be active high for some
> and active low for others.)
>
> See the wikipedia page I pointed to before and a few links from it.
>
> --
> Roberto Waltman
>
>
>
>
> _______________________________________________
> Simpits-tech mailing list
> Simpits-tech@simpits.org
> http://www.simpits.org/mailman/listinfo/simpits-tech
> To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
>
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
Ray
www.EllieAvionics.com
|
|
|
| Re: [simpits-tech] Air-core driver (Was: Arduino, Part Deaux...) [message #2121 is a reply to message #2120 ] |
Thu, 03 March 2011 20:14   |
Rick Davis Messages: 128 Registered: January 2009 |
Senior Member |
|
|
he he
R
----- Original Message -----
From: "Ray Sotkiewicz" <raysot@comcast.net>
To: <simpits-tech@simpits.org>
Sent: Thursday, March 03, 2011 11:59 PM
Subject: Re: [simpits-tech] Air-core driver (Was: Arduino, Part Deaux...)
> Roberto, you are the MAN!
>
> http://www.youtube.com/watch?v=K1krpXFGASQ
>
> I simply reversed my bitwise AND operation to start with the MSB and
> viola!
>
> Thank you so much!
>
> Gene.. I don't need no stinking H-Bridge! ;-)
> Ray
>
>
> On 3/3/2011 1:48 PM, Roberto Waltman wrote:
>> On Tue, February 22, 2011 5:08 pm, raysot@comcast.net wrote:
>>> Gotta crack a few eggs to make an omelet I guess.
>>>
>>> Now, for the serial plan... What I hope for is to have a single data
>>> line
>>> shared by all CS4122 chips , with multiple CLK lines. (One per chip)
>>>
>> No, that would be the wrong omelet.
>>
>> The SPI way is one data line to all chips, (or chain of chips,) one clock
>> line to all chips, and one CS *per* chip.
>>
>> Only the chip that has an active CS will accept the data, all others will
>> ignore it.
>>
>> (And again, if you have different chips, CS may be active high for some
>> and active low for others.)
>>
>> See the wikipedia page I pointed to before and a few links from it.
>>
>> --
>> Roberto Waltman
>>
>>
>>
>>
>> _______________________________________________
>> Simpits-tech mailing list
>> Simpits-tech@simpits.org
>> http://www.simpits.org/mailman/listinfo/simpits-tech
>> To unsubscribe, please see the instructions at the bottom of the above
>> page. Thanks!
>>
>
> _______________________________________________
> Simpits-tech mailing list
> Simpits-tech@simpits.org
> http://www.simpits.org/mailman/listinfo/simpits-tech
> To unsubscribe, please see the instructions at the bottom of the above
> page. Thanks!
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
|
|
|
| Re: [simpits-tech] Air-core driver (Was: Arduino, Part Deaux...) [message #2122 is a reply to message #2120 ] |
Thu, 03 March 2011 21:26   |
LawnDart Messages: 94 Registered: March 2009 Location: Seattle, WA |
Member |
|
|
Full-Circle Test:
http://www.youtube.com/watch?v=5yjIBd-FVxA
On 3/3/2011 7:59 PM, Ray Sotkiewicz wrote:
> Roberto, you are the MAN!
>
> http://www.youtube.com/watch?v=K1krpXFGASQ
>
> I simply reversed my bitwise AND operation to start with the MSB and viola!
>
> Thank you so much!
>
> Gene.. I don't need no stinking H-Bridge! ;-)
> Ray
>
>
> On 3/3/2011 1:48 PM, Roberto Waltman wrote:
>> On Tue, February 22, 2011 5:08 pm, raysot@comcast.net wrote:
>>> Gotta crack a few eggs to make an omelet I guess.
>>>
>>> Now, for the serial plan... What I hope for is to have a single data line
>>> shared by all CS4122 chips , with multiple CLK lines. (One per chip)
>>>
>> No, that would be the wrong omelet.
>>
>> The SPI way is one data line to all chips, (or chain of chips,) one clock
>> line to all chips, and one CS *per* chip.
>>
>> Only the chip that has an active CS will accept the data, all others will
>> ignore it.
>>
>> (And again, if you have different chips, CS may be active high for some
>> and active low for others.)
>>
>> See the wikipedia page I pointed to before and a few links from it.
>>
>> --
>> Roberto Waltman
>>
>>
>>
>>
>> _______________________________________________
>> Simpits-tech mailing list
>> Simpits-tech@simpits.org
>> http://www.simpits.org/mailman/listinfo/simpits-tech
>> To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
>>
> _______________________________________________
> Simpits-tech mailing list
> Simpits-tech@simpits.org
> http://www.simpits.org/mailman/listinfo/simpits-tech
> To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
>
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
Ray
www.EllieAvionics.com
|
|
|
| Re: [simpits-tech] Air-core driver (Was: Arduino, Part Deaux...) [message #2123 is a reply to message #2121 ] |
Thu, 03 March 2011 22:06   |
LawnDart Messages: 94 Registered: March 2009 Location: Seattle, WA |
Member |
|
|
That 16x2 LCD panel is invaluable for seeing all your programs' VARs in
the Arduino...
http://www.sparkfun.com/products/9395
On 3/3/2011 8:14 PM, Rick Davis wrote:
> he he
>
> R
>
>
> ----- Original Message -----
> From: "Ray Sotkiewicz"<raysot@comcast.net>
> To:<simpits-tech@simpits.org>
> Sent: Thursday, March 03, 2011 11:59 PM
> Subject: Re: [simpits-tech] Air-core driver (Was: Arduino, Part Deaux...)
>
>
>> Roberto, you are the MAN!
>>
>> http://www.youtube.com/watch?v=K1krpXFGASQ
>>
>> I simply reversed my bitwise AND operation to start with the MSB and
>> viola!
>>
>> Thank you so much!
>>
>> Gene.. I don't need no stinking H-Bridge! ;-)
>> Ray
>>
>>
>> On 3/3/2011 1:48 PM, Roberto Waltman wrote:
>>> On Tue, February 22, 2011 5:08 pm, raysot@comcast.net wrote:
>>>> Gotta crack a few eggs to make an omelet I guess.
>>>>
>>>> Now, for the serial plan... What I hope for is to have a single data
>>>> line
>>>> shared by all CS4122 chips , with multiple CLK lines. (One per chip)
>>>>
>>> No, that would be the wrong omelet.
>>>
>>> The SPI way is one data line to all chips, (or chain of chips,) one clock
>>> line to all chips, and one CS *per* chip.
>>>
>>> Only the chip that has an active CS will accept the data, all others will
>>> ignore it.
>>>
>>> (And again, if you have different chips, CS may be active high for some
>>> and active low for others.)
>>>
>>> See the wikipedia page I pointed to before and a few links from it.
>>>
>>> --
>>> Roberto Waltman
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>> Simpits-tech mailing list
>>> Simpits-tech@simpits.org
>>> http://www.simpits.org/mailman/listinfo/simpits-tech
>>> To unsubscribe, please see the instructions at the bottom of the above
>>> page. Thanks!
>>>
>> _______________________________________________
>> Simpits-tech mailing list
>> Simpits-tech@simpits.org
>> http://www.simpits.org/mailman/listinfo/simpits-tech
>> To unsubscribe, please see the instructions at the bottom of the above
>> page. Thanks!
> _______________________________________________
> Simpits-tech mailing list
> Simpits-tech@simpits.org
> http://www.simpits.org/mailman/listinfo/simpits-tech
> To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
>
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
Ray
www.EllieAvionics.com
|
|
|
| Re: [simpits-tech] Air-core driver (Was: Arduino, Part Deaux...) [message #2124 is a reply to message #2120 ] |
Fri, 04 March 2011 06:03   |
Gene Buckle Messages: 1067 Registered: January 2009 |
Senior Member Administrator |
|
|
On Thu, 3 Mar 2011, Ray Sotkiewicz wrote:
> Roberto, you are the MAN!
>
> http://www.youtube.com/watch?v=K1krpXFGASQ
>
> I simply reversed my bitwise AND operation to start with the MSB and viola!
>
> Thank you so much!
>
> Gene.. I don't need no stinking H-Bridge! ;-)
No, you just need some crazy good eyesight and a 12 year old with no hand
tremor to solder up the parts. :)
g.
--
Proud owner of F-15C 80-0007
http://www.f15sim.com - The only one of its kind.
http://www.simpits.org/geneb - The Me-109F/X Project
ScarletDME - The red hot Data Management Environment
A Multi-Value database for the masses, not the classes.
http://www.scarletdme.org - Get it _today_!
Political correctness is a doctrine, fostered by a delusional, illogical
minority, and rabidly promoted by an unscrupulous mainstream media, which
holds forth the proposition that it is entirely possible to pick up a turd
by the clean end.
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
|
|
| | |
| Re: [simpits-tech] Video Montage of my fullsize build [message #2127 is a reply to message #2126 ] |
Sun, 06 March 2011 08:14   |
Gene Buckle Messages: 1067 Registered: January 2009 |
Senior Member Administrator |
|
|
On Sun, 6 Mar 2011, bjones@pipecomp.com.au wrote:
> Hi guy's,
>
> Whilst i still lurk around in the list, (and watch Gene's shopbot porn on
> YT) I have not done any work on a Sim for years,
>
> I have been working on my own full sized aircraft, A long project with a
> even longer time span to the completion date,
>
> A threw together a video montage
>
> http://www.youtube.com/watch?v=ajoN_z_nPJ8
>
That's pretty cool. Where does the rubber band go? :)
g.
--
Proud owner of F-15C 80-0007
http://www.f15sim.com - The only one of its kind.
http://www.simpits.org/geneb - The Me-109F/X Project
ScarletDME - The red hot Data Management Environment
A Multi-Value database for the masses, not the classes.
http://www.scarletdme.org - Get it _today_!
Political correctness is a doctrine, fostered by a delusional, illogical
minority, and rabidly promoted by an unscrupulous mainstream media, which
holds forth the proposition that it is entirely possible to pick up a turd
by the clean end.
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
|
|
|
| Re: [simpits-tech] Video Montage of my fullsize build [message #2128 is a reply to message #2126 ] |
Sun, 06 March 2011 12:19   |
delor lauchang Messages: 52 Registered: January 2009 |
Member |
|
|
this is awesome work, cant wait to see it fly.
On Sat, Mar 5, 2011 at 11:34 PM, <bjones@pipecomp.com.au> wrote:
> Hi guy's,
>
> Whilst i still lurk around in the list, (and watch Gene's shopbot porn on
> YT) I have not done any work on a Sim for years,
>
> I have been working on my own full sized aircraft, A long project with a
> even longer time span to the completion date,
>
> A threw together a video montage
>
> http://www.youtube.com/watch?v=ajoN_z_nPJ8
>
>
> Regards
>
> Ben
> West Oz
> _______________________________________________
> Simpits-tech mailing list
> Simpits-tech@simpits.org
> http://www.simpits.org/mailman/listinfo/simpits-tech
> To unsubscribe, please see the instructions at the bottom of the above
> page. Thanks!
>
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
|
|
| | | | | |
| Re: [simpits-tech] Air-core driver & Arduino... [message #2155 is a reply to message #2153 ] |
Wed, 09 March 2011 20:24   |
LawnDart Messages: 94 Registered: March 2009 Location: Seattle, WA |
Member |
|
|
I've got the Arduino ramped up as fast as it will go... I found that a
384uS delay in the Serial data between CLK IN and DATA IN provides just
enough software dampening to make it realistic. 384uS is enough room as
well to logically add more gauges to the same card.
On 3/9/2011 8:15 PM, Roberto Waltman wrote:
> Ray Sotkiewicz wrote:
>> Success!! :-)
>> http://www.youtube.com/watch?v=-JGj4FySnY8
> Looks nice. I guess from the steadiness of the LEDs that you are using a
> faster clock rate also, that should contribute to the smooth movement.
>
> R.
> _______________________________________________
> Simpits-tech mailing list
> Simpits-tech@simpits.org
> http://www.simpits.org/mailman/listinfo/simpits-tech
> To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
>
_______________________________________________
Simpits-tech mailing list
Simpits-tech@simpits.org
http://www.simpits.org/mailman/listinfo/simpits-tech
To unsubscribe, please see the instructions at the bottom of the above page. Thanks!
Ray
www.EllieAvionics.com
|
|
| |
Goto Forum:
Current Time: Sun May 19 14:51:00 PDT 2013
Total time taken to generate the page: 0.10147 seconds |