Ks0243 keyestudio EASY plug W5100 Ethernet Module: Difference between revisions
Keyestudio (talk | contribs) |
Keyestudio (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
[[image:ks0245图.jpg|thumb|600px|right|EASY plug Joystick Module ]] | |||
==Introduction== | ==Introduction== | ||
W5100 is a multi-purpose single internet interface chip, integrated 10/100 Ethernet controller inside, and applied to embedded system which is high integration, high stability, high performance and low cost. <br> | |||
It can be connected to Internet without operating system and compatible with IEEE802.3 10BASE-T and 802.3u 100BASE-TX. <br> | |||
It contains TCP/IP protocol stack that is full-hardware and verified by market for years, Ethernet medium transport layer and physical layer. | |||
You don’t need to consider the Ethernet control, and just need simple program for ports.<br> | |||
The module should be connected to the SPI communication interface on EASY plug control board with only one cable, so the wiring is rather simple. | |||
== | <br> | ||
==Specifications== | |||
* Various interface: Direct Bus, Indirect Bus and SPI Bus | * Various interface: Direct Bus, Indirect Bus and SPI Bus | ||
* Supporting TCP/IP protocol stack of hardware, also TCP,UDP,ICMP,IGMP, | * Supporting TCP/IP protocol stack of hardware, also TCP, UDP, ICMP, IGMP, IPv4, ARP and PPPoE | ||
* Up to 4 independent ports | * Up to 4 independent ports | ||
* Integrating 16KBYTE transmit-receive cache | * Integrating 16KBYTE transmit-receive cache | ||
* Supporting automatic conversion of polarity | * Supporting automatic conversion of polarity | ||
* Coming with Internet access | * Coming with Internet access | ||
<br> | |||
==Technical Details== | |||
* Dimensions: 61mm*30mm*18mm | |||
* Weight: 14.1g | |||
<br> | |||
== | ==Connect It Up== | ||
<br>[[File: | Connect the EASY Plug Joystick module to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable. | ||
<br>[[File:KS0245.jpg|500px|frameless|thumb]]<br> | |||
== | <br> | ||
==Upload the Code== | |||
Copy and paste below code to [http://wiki.keyestudio.com/index.php/How_to_Download_Arduino_IDE Arduino IDE] and upload. | |||
<pre> | <pre> | ||
int JoyStick_X = 6; //x | |||
int JoyStick_Y = 7; //y | |||
int JoyStick_Z = 2; //key | |||
void setup() | |||
{ | |||
pinMode(JoyStick_Z, INPUT); | |||
Serial.begin(9600); // 9600 bps | |||
// | |||
// | |||
// | |||
void setup() { | |||
} | } | ||
void loop() | |||
void loop() { | { | ||
int x,y,z; | |||
x=analogRead(JoyStick_X); | |||
y=analogRead(JoyStick_Y); | |||
z=digitalRead(JoyStick_Z); | |||
Serial.print(x ,DEC); | |||
Serial.print(","); | |||
Serial.print(y ,DEC); | |||
Serial.print(","); | |||
Serial.println(z ,DEC); | |||
delay(100); | |||
Serial.println( | |||
} | } | ||
</pre> | </pre> | ||
== | <br> | ||
==What You Should See== | |||
<br>[[File: | Done uploading the code, open the serial monitor and set the baud rate to 9600. If push the Joystick button towards different direction, you should get the different value. | ||
<br>[[File:KS0245-3.png|700px|frameless|thumb]]<br> | |||
<br> | |||
==Resources == | ==Resources == | ||
'''Download the PDF:'''<br> | |||
https://drive.google.com/open?id=1eN8fs6Ew9sOMBcJxqhNgWk3qrMnSba9S | |||
'''Download the Code:'''<br> | |||
https://drive.google.com/open?id=1QTwt5lOX7qMmIkL-I0b9ANV1N-6RLYl6 | |||
<br> | |||
==Buy from == | ==Buy from == | ||
'''Official Website''' | *'''Official Website:''' http://www.keyestudio.com/ks0245.html | ||
*[https://www.aliexpress.com/store/product/Keyestudio-EASY-plug-Joystick-Module-for-Arduino/1452162_32819777041.html?spm=2114.12010612.8148356.14.79054ba7Qzl9Cv Shop on aliexpress ] | |||
[[ | [[category:EASY Plug]] |
Revision as of 11:27, 28 November 2018
Introduction
W5100 is a multi-purpose single internet interface chip, integrated 10/100 Ethernet controller inside, and applied to embedded system which is high integration, high stability, high performance and low cost.
It can be connected to Internet without operating system and compatible with IEEE802.3 10BASE-T and 802.3u 100BASE-TX.
It contains TCP/IP protocol stack that is full-hardware and verified by market for years, Ethernet medium transport layer and physical layer.
You don’t need to consider the Ethernet control, and just need simple program for ports.
The module should be connected to the SPI communication interface on EASY plug control board with only one cable, so the wiring is rather simple.
Specifications
- Various interface: Direct Bus, Indirect Bus and SPI Bus
- Supporting TCP/IP protocol stack of hardware, also TCP, UDP, ICMP, IGMP, IPv4, ARP and PPPoE
- Up to 4 independent ports
- Integrating 16KBYTE transmit-receive cache
- Supporting automatic conversion of polarity
- Coming with Internet access
Technical Details
- Dimensions: 61mm*30mm*18mm
- Weight: 14.1g
Connect It Up
Connect the EASY Plug Joystick module to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
Upload the Code
Copy and paste below code to Arduino IDE and upload.
int JoyStick_X = 6; //x int JoyStick_Y = 7; //y int JoyStick_Z = 2; //key void setup() { pinMode(JoyStick_Z, INPUT); Serial.begin(9600); // 9600 bps } void loop() { int x,y,z; x=analogRead(JoyStick_X); y=analogRead(JoyStick_Y); z=digitalRead(JoyStick_Z); Serial.print(x ,DEC); Serial.print(","); Serial.print(y ,DEC); Serial.print(","); Serial.println(z ,DEC); delay(100); }
What You Should See
Done uploading the code, open the serial monitor and set the baud rate to 9600. If push the Joystick button towards different direction, you should get the different value.
Resources
Download the PDF:
https://drive.google.com/open?id=1eN8fs6Ew9sOMBcJxqhNgWk3qrMnSba9S
Download the Code:
https://drive.google.com/open?id=1QTwt5lOX7qMmIkL-I0b9ANV1N-6RLYl6
Buy from
- Official Website: http://www.keyestudio.com/ks0245.html