Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:iot:examples:quickstart:qs2 [2022/02/28 15:02] ingmar05en:iot:examples:quickstart:qs2 [2023/03/01 21:54] (current) – removed raivo.sell
Line 1: Line 1:
-====== Creating your first project ====== 
  
-=====Using PlatformIO IDE===== 
- 
-On VS Code, click on the PlartfomIO **Home** icon. Click on **+ New Project** to start a new project. 
- 
-{{:en:iot:examples:setup:new-project.png?600|}} 
- 
-Give your project a name, select the board **WeMos D1 MINI ESP32 (WEMOS)** and the framework as **Arduino** 
- 
-{{:en:iot:examples:setup:projectwizard.png?600|}} 
- 
-After finishing the setup the project should be accessible from the explorer tab. 
- 
-{{:en:iot:examples:setup:explorer.png?600|}} 
- 
-====platformio.ini file==== 
- 
-The **platformio.ini** file is the PlatformIO Configuration File for your project. It shows the platform, board, and framework for your project. You can also add other configurations like libraries to be included, upload options, changing the Serial Monitor baud rate and other configurations. 
- 
-{{:en:iot:examples:setup:platformioini.png?600|}} 
- 
-====src folder==== 
- 
-The **src** folder is your working folder. Under the src folder, there’s a main.cpp file. That’s where you write your code. Click on that file. The structure of an Arduino program should open with the setup() and loop() functions. 
- 
-{{:en:iot:examples:setup:src.png?600|}} 
- 
-Paste the following example code to main.cpp 
- 
-<code> 
-#include <Arduino.h> 
-#include <ittiot.h> 
- 
-void iot_received(String topic, String msg){ 
-    Serial.print("MSG FROM USER callback, topic: "); 
-    Serial.print(topic); 
-    Serial.print(" payload: "); 
-    Serial.println(msg); 
-} 
- 
-void iot_connected(){ 
-    Serial.println("MQTT connected callback"); 
-    iot.subscribe("mytopic"); 
-    iot.log("Hello from ESP!"); 
-} 
- 
-void setup() { 
-    Serial.begin(9600); 
-    iot.setConfig("wname", ""); 
-    iot.setConfig("wpass", ""); 
-    iot.setConfig("msrv", ""); 
-    iot.setConfig("mport", ""); 
-    iot.setConfig("muser", ""); 
-    iot.setConfig("mpass", ""); 
-    iot.printConfig(); // print json config to serial 
-    iot.setBootPin(5); 
-    iot.setup(); 
-} 
- 
-void loop() { 
-    iot.handle(); 
-} 
-</code> 
- 
-Make sure to replace the connection information with yours like so: 
-<code> 
-... 
-iot.setConfig("wname", "myWiFi"); 
-iot.setConfig("wpass", "myPassword"); 
-... 
-</code> 
- 
- 
- 
-=====Uploading code using PlatformIO IDE===== 
- 
-To test and upload your code first save your code and then click on the **Build** icon on the bottom of the editor to verify that your code can be ran. After a successful build press the **Upload** icon. Alternatively, you can got to the **PIO Project Tasks** menu and select build or upload from there.. 
- 
-{{:en:iot:examples:setup:buildupload.png?600|}} 
en/iot/examples/quickstart/qs2.1646060520.txt.gz · Last modified: 2022/02/28 10:00 (external edit)
CC Attribution-Share Alike 4.0 International
www.chimeric.de Valid CSS Driven by DokuWiki do yourself a favour and use a real browser - get firefox!! Recent changes RSS feed Valid XHTML 1.0