2

I am trying to make a connection between smartphone and Arduino. I found a method which uses an Ethernet shield. Ethernet shield is connected to the router.

I wonder is Wifly shield is also a kind of wireless "Ethernet shield".

Is the only difference between Wifly and Ethernet shield is that one is wired to the router and the other is wireless connected to the router?

Can I use Wifly instead of Ethernet shield?

user16307
  • 11,802
  • 51
  • 173
  • 312
  • Ethernet isn't ususally shielded. – Olin Lathrop Apr 19 '12 at 23:08
  • @OlinLathrop, I think you were making a joke, and I laughed assunming so, but as you have aptly brought to attention, many people do not realize that a shield for arduino is what pic calls daughter cards. They are pieces of hardware designed to plug into the arduino to add functionality. – Kortuk May 26 '12 at 16:10
  • 4
    @Kortuk: It was meant to be funny to some, but also point out to the OP that he should learn to use the right terms. Just because some arduino marketing guy thought to give something a non-standard cutesy name doesn't make it right to use it, especially outside it's native context. I don't like to see the arduino folks get away with making up new terms and hijacking old ones for their own private benefit. Use that nonsense on arduino forums, but don't expect others to tolerate it otherwise. – Olin Lathrop May 26 '12 at 23:28

2 Answers2

1

Yes, you can use the wifly shield. However there are a couple of things to bear in mind. The most common ethernet shields are SPI based whereas the wifly is uart based. Your throughput will be reduced when using the wifly.

Also note that the hardware UART in the arduino is used for programming sketches and communicating with the pc, so you're going to have to use software UART if you want to use both at the same time.

tuxfool
  • 76
  • 2
-1

YES you can. WiFi just a wireless ethernet port. I saw one supplier make this card obsolete ( http://www.sparkfun.com/products/9367 )

Tony Stewart EE75
  • 1
  • 3
  • 54
  • 182