Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*[“‘][a-z0-9\-_\!\$]+[“‘]': // // mqtt_pub_hdc1000_s9648_100.ino - mqtt publish sample for Arduino Yun // #include <YunClient.h> #include <PubSubClient.h> #include <Wire.h> char *server = "mqtt.example.com"; int port = 1883; char *username = "username"; char *password = "password"; char *topic0 = "topic_hdc1000"; char *topic1 = "topic_s9648"; #define LED_PIN 13 #define S9648_100_PIN A0 YunClient client; PubSubClient […]
↧