한 걸음 두 걸음

arduino - mobile간 실시간 인터넷 통신 참고자료 본문

Arduino

arduino - mobile간 실시간 인터넷 통신 참고자료

언제나 변함없이 2019. 7. 10. 00:40
반응형

Polling 과 Push에 대해 잘 알아볼 것!! 

서버를 따로 만들지않아도 됨 

 

https://www.phpoc.com/support/manual/phpoc_shield_for_arduino_library_reference/contents.php?id=phpoc_client_phpocclient

 

PHPoC Shield for Arduino Library Reference

PhpocClient() Description Creates a client which can connect to a server with specified internet IP address and port. Syntax PhpocClient() Parameters none Returns none Example #include // hostname of web server: char server_name[] = "example.phpoc.com"; Ph

www.phpoc.com

 

https://www.phpoc.com/support/manual/phpoc_shield_for_arduino_library_reference/contents.php?id=phpoc_server_beginwebsocket

 

PHPoC Shield for Arduino Library Reference

beginWebSocket() Description Tells the server to begin listening for an incoming Web Socket connection. Syntax server.beginWebSocket(path) Parameters path - URI of the web socket Returns none Example #include PhpocServer server(80); void setup() { Serial.b

www.phpoc.com

 

https://www.phpoc.com/support/manual/phpoc_shield_for_arduino_library_reference/contents.php?id=phpoc_phpoc_dnsserverip

 

PHPoC Shield for Arduino Library Reference

dnsServerIP() Description Returns the DNS server IP address for the device. Syntax Phpoc.dnsServerIP() Parameters none Returns the DNS server IP address for the device (IPAddress). Example #include #include void setup() { Serial.begin(9600); if(Phpoc.begin

www.phpoc.com

 

https://forum.phpoc.com/articles/tutorials/269-how-to-control-devices-via-websocket

 

How to Control Devices via WebSocket - PHPoC Forum

Advantage of controlling sensors/devices via WebSocket (POST or GET)Convenient to create Graphic User InterfaceUseful to control continuous states of devices

forum.phpoc.com

 

https://forum.phpoc.com/articles/tutorials/269-how-to-control-devices-via-websocket

 

How to Control Devices via WebSocket - PHPoC Forum

Advantage of controlling sensors/devices via WebSocket (POST or GET)Convenient to create Graphic User InterfaceUseful to control continuous states of devices

forum.phpoc.com

 

https://forum.phpoc.com/articles/tutorials/265-websocket

 

WebSocket - PHPoC Forum

Introduction to WebSocket The WebSocket is one of the new features of HTML5. It is used to bi-directional exchange data between client (e.g Web browser) and

forum.phpoc.com

 

 

반응형