当前位置: 首页>>代码示例>>C++>>正文


C++ EthernetServer::write方法代码示例

本文整理汇总了C++中EthernetServer::write方法的典型用法代码示例。如果您正苦于以下问题:C++ EthernetServer::write方法的具体用法?C++ EthernetServer::write怎么用?C++ EthernetServer::write使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在EthernetServer的用法示例。


在下文中一共展示了EthernetServer::write方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: loop

void loop() {
  // wait for a new client:
  EthernetClient client = server.available();

  // when the client sends the first byte, say hello:
  if (client) {
    if (!gotAMessage) {
      Serial.println("We have a new client");
      client.println("Hello, client!"); 
      gotAMessage = true;
    }

    // read the bytes incoming from the client:
    char thisChar = client.read();
    // echo the bytes back to the client:
    server.write(thisChar);
    // echo the bytes to the server as well:
    Serial.print(thisChar);
  }
}
开发者ID:blackphoenix208,项目名称:ARMWork,代码行数:20,代码来源:main.cpp

示例2: log_ethernet_logger

    void log_ethernet_logger(const char * name, const char * value, const char * unit){
        #ifdef DEBUG_ETHERNET_LOGGER
            DEBUG_1("Starting");
        #endif
        #ifdef ETHERNET_ENABLE_SERVER
            eth_server.print(millis(),DEC);
            eth_server.write(",");
            eth_server.write(name);
            eth_server.write(",");
            eth_server.write(value);
            eth_server.write(",");
            eth_server.write(unit);
            eth_server.println(",");
        #endif
        #ifdef ETHERNET_ENABLE_MQTT
            if (!mqtt_client.connected()){
                #ifdef ETHERNET_MQTT_USER
                    mqtt_client.connect(ETHERNET_MQTT_CLIENT, ETHERNET_MQTT_USER, "ETHERNET_MQTT_PASS");
                #else
                    mqtt_client.connect(ETHERNET_MQTT_CLIENT);
                #endif
                if (!mqtt_client.connected()){
                    return;
                }
            }
            char *nbuf;
            char *vbuf;
            int len;

            nbuf=(char*)malloc(sizeof(char)*(strlen(name)+1));
            vbuf=(char*)malloc(sizeof(char)*(strlen(name)+1));
            strcpy(nbuf, name);
            strcpy(vbuf,value);

            mqtt_client.publish(nbuf, vbuf);

            free(nbuf);
            free(vbuf);
        #endif
        #ifdef DEBUG_ETHERNET_LOGGER
            DEBUG_1("Finishing");
        #endif
    }
开发者ID:Tambralinga,项目名称:loguino,代码行数:43,代码来源:code.c


注:本文中的EthernetServer::write方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。