This is the sample program that can see the decode result of barcode data on Watson IoT.

Dependencies:   AsciiFont DisplayApp GR-PEACH_video LCD_shield_config LWIPBP3595Interface_STA_for_mbed-os USBDevice

Revision:
0:7d720671e6dc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbedConnectorInterface/source/Options.cpp	Thu Nov 10 20:04:48 2016 +0900
@@ -0,0 +1,176 @@
+/**
+ * @file    Options.cpp
+ * @brief   mbed CoAP Options (immutable OptionsBuilder instance) class implementation
+ * @author  Doug Anson/Chris Paola
+ * @version 1.0
+ * @see
+ *
+ * Copyright (c) 2014
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+// Class support
+#include "mbed-connector-interface/Options.h"
+
+// Utils
+#include "mbed-connector-interface/Utils.h"
+
+namespace Connector {
+
+// default constructor
+Options::Options()
+{
+}
+
+// copy constructor
+Options::Options(const Options & /* opt */)
+{
+}
+
+// destructors
+Options::~Options()
+{
+}
+
+// lifetime pointer
+int Options::getLifetime()
+{
+    return this->m_lifetime;
+}
+
+// NSP domain
+string Options::getDomain()
+{
+    return this->m_domain;
+}
+
+// Endpoint name
+string Options::getEndpointNodename()
+{
+    return this->m_node_name;
+}
+
+// Endpoint Type
+string Options::getEndpointType()
+{
+    return this->m_endpoint_type;
+}
+
+// Connector URL
+char  *Options::getConnectorURL()
+{
+    return (char *)this->m_connector_url.c_str();
+}
+
+// Connector Port
+uint16_t Options::getConnectorPort()
+{
+	return extract_port_from_url(this->getConnectorURL(),DEF_COAP_PORT); 
+}
+
+// Device Resources Object 
+void *Options::getDeviceResourcesObject()
+{
+    return this->m_device_resources_object;
+}
+
+// Firmware Resources Object 
+void *Options::getFirmwareResourcesObject()
+{
+    return this->m_firmware_resources_object;
+}
+
+// Static Resources
+StaticResourcesList *Options::getStaticResourceList()
+{
+    return &this->m_static_resources;
+}
+
+// Dynamic Resources
+DynamicResourcesList *Options::getDynamicResourceList()
+{
+    return &this->m_dynamic_resources;
+}
+
+// WiFi SSID
+string Options::getWiFiSSID() {
+    return this->m_wifi_ssid;
+}
+
+// WiFi AuthType
+WiFiAuthTypes Options::getWiFiAuthType() {
+    return this->m_wifi_auth_type;
+}
+
+// WiFi AuthKey
+string Options::getWiFiAuthKey() {
+    return this->m_wifi_auth_key;
+}
+
+// CoAP Connection Type
+CoAPConnectionTypes Options::getCoAPConnectionType() {
+	return this->m_coap_connection_type;
+}
+
+// IP Address Type
+IPAddressTypes Options::getIPAddressType() {
+	return this->m_ip_address_type;
+}
+
+// Immediate Observationing Enabled
+bool Options::immedateObservationEnabled() {
+    return this->m_enable_immediate_observation;
+}
+
+// Enable/Disable Observation control via GET
+bool Options::enableGETObservationControl() {
+    return this->m_enable_get_obs_control;
+}
+
+// Get the Server Certificate
+uint8_t *Options::getServerCertificate() {
+	return this->m_server_cert;
+}
+
+// Get the Server Certificate length
+int Options::getServerCertificateSize() {
+	return this->m_server_cert_length;
+}
+
+// Get the Client Certificate
+uint8_t *Options::getClientCertificate() {
+	return this->m_client_cert;
+}
+
+// Get the Client Certificate length
+int Options::getClientCertificateSize() {
+	return this->m_client_cert_length;
+}
+
+// Get the Client Key
+uint8_t *Options::getClientKey() {
+	return this->m_client_key;
+}
+
+// Get the Client Key length
+int Options::getClientKeySize() {
+	return this->m_client_key_length;
+}
+
+// Get our Endpoint
+void *Options::getEndpoint() {
+	return this->m_endpoint;
+}
+
+} // namespace Connector