物聯網開發硬體應用
Would you like to react to this message? Create an account in a few clicks or log in to continue.
物聯網開發硬體應用

提升國內高職學生物聯網開發硬體應用入門技術 待進入科技大學再升級為物聯網開發硬體設計人員


您沒有登錄。 請登錄註冊

最新WIFI IOT開發板

2 posters

向下  內容 [第1頁(共1頁)]

1最新WIFI  IOT開發板 Empty 最新WIFI IOT開發板 周三 10月 07, 2015 6:40 pm

Admin


Admin

基于ESP-8266EX
Arduino相容,使用Arduino IDE来設計程式
11 x I/O 引脚
1 x ADC 引脚(输入范围0-3.3V)
支持OTA无线上传
板载5V 1A电源(最高输入电压24V)
SPI、I2C、1-wire...



最新WIFI  IOT開發板 Wemos_D1_mini



Admin 在 周四 9月 22, 2016 7:53 pm 作了第 2 次修改

https://iotboard.666forum.com

2最新WIFI  IOT開發板 Empty 回復: 最新WIFI IOT開發板 周四 10月 08, 2015 7:02 pm

chenyiijye



最新WIFI  IOT開發板 2j1jvoh

網路上找到的規格
請參考!

3最新WIFI  IOT開發板 Empty 回復: 最新WIFI IOT開發板 周二 10月 13, 2015 12:53 am

chenyiijye



程式碼 Led閃爍-範例-D1-Examplex-Basics-Blink
最新WIFI  IOT開發板 2rc3kt5
/*
 Blink
 Turns on an LED on for one second, then off for one second, repeatedly.
*/


// the setup function runs once when you press reset or power the board
void setup() {
 // initialize digital pin 13 as an output.
 pinMode(D13, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
 digitalWrite(D13, HIGH);   // turn the LED on (HIGH is the voltage level)
 delay(500);              // wait for a second
 digitalWrite(D13, LOW);    // turn the LED off by making the voltage LOW
 delay(500);              // wait for a second
}


程式碼 Led閃爍-範例-D1-Examplex-Basics-BlinkWithoutDelay
最新WIFI  IOT開發板 2rc3kt5/*

*/

int ledState = LOW;    

unsigned long previousMillis = 0;
const long interval = 1000;

void setup() {
 pinMode(D13, OUTPUT);
}

void loop()
{
 unsigned long currentMillis = millis();
 if(currentMillis - previousMillis >= interval) {
   previousMillis = currentMillis;  
   if (ledState == LOW)
     ledState = HIGH;  // Note that this switches the LED *off*
   else
     ledState = LOW;   // Note that this switches the LED *on*
   digitalWrite(D13, ledState);
 }
}

因為我不知道影片檔怎樣上傳 ,不然影片檔比較真實

4最新WIFI  IOT開發板 Empty 回復: 最新WIFI IOT開發板 周四 10月 22, 2015 11:59 am

chenyiijye



http://www.86duino.com/?page_id=2255&lang=TW

此為ARDUINO語法以及講解個人認為還不錯的網站(中文的唷)

回頂端  內容 [第1頁(共1頁)]

這個論壇的權限:
無法 在這個版面回復文章