▼ กำลังโหลดข้อมูล... ▼
แสดงความคิดเห็น
คุณสามารถแสดงความคิดเห็นกับกระทู้นี้ได้ด้วยการเข้าสู่ระบบ
กระทู้ที่คุณอาจสนใจ
อ่านกระทู้อื่นที่พูดคุยเกี่ยวกับ
วิศวกรรมคอมพิวเตอร์
วิทยาศาสตร์คอมพิวเตอร์
Open-source Software
การพัฒนาซอฟต์แวร์
C (ภาษาคอมพิวเตอร์)
Arduino ส่งค่าให้กับ node mcu esp8266 ๆ ส่ง netpie
#include "EmonLib.h" // Include Emon Library
EnergyMonitor emon1; // Create an instance
void setup()
{
Serial.begin(9600);
emon1.voltage(2, 234.26, 1.7); // Voltage: input pin, calibration, phase_shift
emon1.current(1, 111.1); // Current: input pin, calibration.
}
void loop()
{
emon1.calcVI(20,2000); // Calculate all. No.of wavelengths, time-out
emon1.serialprint(); // Print out all variables
}
อยากจะส่งค่าที่ได้จากcode ข้างบนไปที่Netpie
โดยผมมี nodemcu esp8266. Code ที่จะupload ลงesp8266 ต้องเขียนยังไงครับ
ขอคำแนะนำด้วยครับ