上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: // 主程序开始 void setup() { Serial.begin(9600); } void loop() { Serial.println((analogRead(A0) * (5 / 10.24))); delay(500); } 阅读全文
posted @ 2022-08-05 15:46 alexhe 阅读(74) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-08-05 14:19 alexhe 阅读(31) 评论(0) 推荐(0)
摘要: /*! * MindPlus * uno * */ // 函数声明 void DF_alexRGB(float mind_n_red, float mind_n_green, float mind_n_blue); // 主程序开始 void setup() { dfrobotRandomSeed( 阅读全文
posted @ 2022-08-05 13:37 alexhe 阅读(55) 评论(0) 推荐(0)
摘要: pwm接口 356 9 10 11 /*! * MindPlus * uno * */ // 动态变量 volatile float mind_n_value; // 函数声明 void DF_fadeOff(); void DF_fadeOn(); // 主程序开始 void setup() { 阅读全文
posted @ 2022-08-05 11:16 alexhe 阅读(151) 评论(0) 推荐(0)
摘要: /*! * MindPlus * uno * */ // 主程序开始 void setup() { } void loop() { for (int index = 0; index < 3; index++) { digitalWrite(13, HIGH); delay(150); digita 阅读全文
posted @ 2022-08-05 10:16 alexhe 阅读(436) 评论(0) 推荐(0)
摘要: // 主程序开始 void setup() { } void loop() { if (digitalRead(7)) { digitalWrite(13, HIGH); } else { digitalWrite(13, LOW); } } 记得按键脚上连一个电阻,去除空气产生的电压浮动 阅读全文
posted @ 2022-08-05 09:30 alexhe 阅读(37) 评论(0) 推荐(0)
摘要: // 主程序开始 void setup() { } void loop() { digitalWrite(13, HIGH); delay(1000); digitalWrite(13, LOW); delay(1000); } 阅读全文
posted @ 2022-08-05 09:14 alexhe 阅读(16) 评论(0) 推荐(0)
摘要: 登陆: curl -X POST -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","method":"user.login","params":{"user":"Admin","password":"zabbix"},"auth":n 阅读全文
posted @ 2021-09-16 09:20 alexhe 阅读(86) 评论(0) 推荐(0)
摘要: 版本3.11 cassandra:3.11 CASSANDRA_CLUSTER_NAME alexcluster CASSANDRA_DC alexdc CASSANDRA_ENDPOINT_SNITCH GossipingPropertyFileSnitch CASSANDRA_RACK alex 阅读全文
posted @ 2021-02-23 10:33 alexhe 阅读(505) 评论(0) 推荐(0)
摘要: {job=~”apache|syslog”} <- show me logs where the job is apache **OR** syslog {job=”apache”} |= “11.11.11.11” #搜job=apache的11.11.11.11( |= “text”, |~ “ 阅读全文
posted @ 2021-01-13 10:48 alexhe 阅读(1333) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 10 下一页