找回密碼
 立即注冊

QQ登錄

只需一步,快速開始

搜索
查看: 6976|回復: 9
打印 上一主題 下一主題
收起左側(cè)

鬧著玩-數(shù)控電源

  [復制鏈接]
跳轉(zhuǎn)到指定樓層
#
ID:489769 發(fā)表于 2019-3-13 11:03 | 只看該作者 |只看大圖 回帖獎勵 |正序瀏覽 |閱讀模式
一直想弄個數(shù)控電源,今天把手里的東西搜羅一下感覺可以整在一起就動手了,事后算了一下成本, 35元左右,而且都是淘寶可以買到的東西


電壓用手機軟件調(diào)節(jié)

lm2596 DCDC降壓模塊¥4.00
Mini360 DCDC¥2.00
LM393 電壓比較模塊¥4.00
ESP32 NodeMCU¥24.00
電阻三只(20k左右)¥1.00
合計¥35.00
ACDC電源適配器(12-19)自備
手機自備





分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏6 分享淘帖 頂1 踩
回復

使用道具 舉報

9#
ID:712493 發(fā)表于 2021-10-25 09:24 | 只看該作者
EP32的開發(fā)環(huán)境搭建可以講講  ESP32 上的程序 基于 Arduino
回復

使用道具 舉報

8#
ID:712493 發(fā)表于 2021-6-14 21:11 | 只看該作者
不錯的玩法 贊一個
回復

使用道具 舉報

7#
ID:128989 發(fā)表于 2020-2-4 12:24 | 只看該作者
不錯的文章,學習了
回復

使用道具 舉報

6#
ID:472506 發(fā)表于 2019-3-19 08:46 | 只看該作者
好文章,收藏一個先。
回復

使用道具 舉報

5#
ID:489769 發(fā)表于 2019-3-14 10:55 | 只看該作者
手機端在應用市場搜索Blynk安裝就好,ios,android 都可以,設置比較簡單控制V1端口輸出值就行,用blynk掃描 我提供的二維碼也可以


回復

使用道具 舉報

地板
ID:489769 發(fā)表于 2019-3-14 10:45 | 只看該作者
ESP32 上的程序 基于 Arduino 和 Blynk
/*************************************************************
  Download latest Blynk library here:
    https://github.com/blynkkk/blynk-library/releases/latest

  Blynk is a platform with iOS and Android apps to control
  Arduino, Raspberry Pi and the likes over the Internet.
  You can easily build graphic interfaces for all your
  projects by simply dragging and dropping widgets.


  Blynk library is licensed under MIT license
  This example code is in public domain.

*************************************************************
  This example runs directly on ESP32 chip.

  Note: This requires ESP32 support package:
    https://github.com/espressif/arduino-esp32

  Please be sure to select the right ESP32 module
  in the Tools -> Board menu!

  Change WiFi ssid, pass, and Blynk auth token to run :)
  Feel free to apply it to any other example. It's simple!
*************************************************************/

/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial


#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "your_auth";          //改成你自己的 auth

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "wifi_name";      //改成你自己的 wifi 名稱
char pass[] = "wifi_password";  //改成你自己的 wifi 密碼

int powerPin = 25;  //dac輸出腳


BLYNK_WRITE(V1)
{
    float tmpVal;
    tmpVal = param.asInt();
    tmpVal = tmpVal / 100; // assigning incoming value from pin V1 to a variable
    tmpVal = tmpVal / 6;   //根據(jù)分壓電阻調(diào)整系數(shù)
    tmpIntVal = tmpVal * 256 /3.3;
    dacWrite(powerPin, tmpIntVal);  
}

void setup()
{
  // Debug console
  Serial.begin(115200);
  Blynk.begin(auth, ssid, pass);
}

void loop()
{
  Blynk.run();
}
回復

使用道具 舉報

板凳
ID:489769 發(fā)表于 2019-3-14 10:36 | 只看該作者


回復

使用道具 舉報

沙發(fā)
ID:489769 發(fā)表于 2019-3-13 23:28 | 只看該作者
admin 發(fā)表于 2019-3-13 22:08
樓主能分享制作資料嗎?

明天補上
回復

使用道具 舉報

樓主
ID:1 發(fā)表于 2019-3-13 22:08 | 只看該作者
樓主能分享制作資料嗎?
回復

使用道具 舉報

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規(guī)則

手機版|小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術交流QQ群281945664

Powered by 單片機教程網(wǎng)

快速回復 返回頂部 返回列表