Lets get the party started and +1
[url=https://www.banggood.com/custlink/KvGGhGF4wG[/url]
I like ESP8266 and ESP8285 and ESP32
Explore... Chat... Share...
And can you explain how you chose the MOSFETs and what power requirements you are working with?
pwm.setup(3, 1000, 005)
pwm.setup(5, 1000, 005)
pwm.setup(6, 1000, 005)
pwm.start(4)
pwm.start(5)
pwm.start(6)
LED1_current=005
LED1_target=005
LED2_current=005
LED2_target=005
LED3_current=005
LED3_target=005
Fadetime1=5000
Fadetime2=5000
Fadetime3=5000
Stepcounter1=0
PosStepcounter1=0
DimTimer1=0
Stepcounter2=0
PosStepcounter2=0
DimTimer2=0
Stepcounter3=0
PosStepcounter3=0
DimTimer3=0
wifi.setmode(wifi.STATION)
wifi.sta.config("SSID","PASSWORD")
srv=net.createServer(net.TCP)
srv:listen(43333,function(conn)
conn:on("receive",function(conn,payload)
print("Input:"..payload)
if string.find(payload,"LED1") then
LED1_target=tonumber(string.sub(payload, 13) )
print("Received LED1 Target Value: "..LED1_target)
Stepcounter1=(LED1_target)-(LED1_current)
if (Stepcounter1) < 0 then
PosStepcounter1=(Stepcounter1)*-1
else PosStepcounter1=(Stepcounter1)
end
if (PosStepcounter1) == 0 then
PosStepcounter1=(PosStepcounter1)+1
else PosStepcounter1=(PosStepcounter1)
end
DimTimer1=(Fadetime1)/(PosStepcounter1)
if (DimTimer1) == 0 then
DimTimer1=(DimTimer1)+1
else DimTimer1=(DimTimer1)
end
print (Fadetime1)
print (Stepcounter1)
print (PosStepcounter1)
print (DimTimer1)
print (LED1_current)
print (LED1_target)
tmr.alarm(0, (DimTimer1), 1, function()
if LED1_current < LED1_target then
LED1_current = (LED1_current + 1)
pwm.setduty(3, LED1_current)
elseif LED1_current > LED1_target then
LED1_current = (LED1_current - 1)
pwm.setduty(3, LED1_current)
elseif LED1_current == LED1_target then tmr.stop(0)
end end )
end
if string.find(payload,"LED2") then
print("Received LED2 Target Value")
LED2_target=tonumber(string.sub(payload, 13) )
Stepcounter2=(LED2_target)-(LED2_current)
if (Stepcounter2) < 0 then
PosStepcounter2=(Stepcounter2)*-1
else PosStepcounter2=(Stepcounter2)
end
if (PosStepcounter2) == 0 then
PosStepcounter2=(PosStepcounter2)+1
else PosStepcounter2=(PosStepcounter2)
end
DimTimer2=(Fadetime2)/(PosStepcounter2)
if (DimTimer2) == 0 then
DimTimer2=(DimTimer2)+1
else DimTimer2=(DimTimer2)
end
print (Fadetime2)
print (Stepcounter2)
print (PosStepcounter2)
print (DimTimer2)
print (LED2_current)
print (LED2_target)
tmr.alarm(1, (DimTimer2), 1, function()
if LED2_current < LED2_target then
LED2_current = (LED2_current + 1)
pwm.setduty(5, LED2_current)
elseif LED2_current > LED2_target then
LED2_current = (LED2_current - 1)
pwm.setduty(5, LED2_current)
elseif LED2_current == LED2_target then tmr.stop(1)
end end )
end
if string.find(payload,"LED3") then
LED3_target=tonumber(string.sub(payload, 13) )
print("Received LED3 Target Value: "..LED3_target)
Stepcounter3=(LED3_target)-(LED3_current)
if (Stepcounter3) < 0 then
PosStepcounter3=(Stepcounter3)*-1
else PosStepcounter3=(Stepcounter3)
end
if (PosStepcounter3) == 0 then
PosStepcounter3=(PosStepcounter3)+1
else PosStepcounter3=(PosStepcounter3)
end
DimTimer3=(Fadetime3)/(PosStepcounter3)
if (DimTimer3) == 0 then
DimTimer3=(DimTimer3)+1
else DimTimer3=(DimTimer3)
end
print (Fadetime3)
print (Stepcounter3)
print (PosStepcounter3)
print (DimTimer3)
print (LED3_current)
print (LED3_target)
tmr.alarm(2, (DimTimer1), 1, function()
if LED3_current < LED3_target then
LED3_current = (LED3_current + 1)
pwm.setduty(6, LED3_current)
elseif LED3_current > LED3_target then
LED3_current = (LED3_current - 1)
pwm.setduty(6, LED3_current)
elseif LED3_current == LED3_target then tmr.stop(2)
end end )
end
end)
end)
print ("Booted to QuinLED_ESP8266_V0.4")
It takes about 20-25 seconds for home assistant c[…]
I tried to upgrade tof my sonoff basic R2 with the[…]
a problem Perhaps you want to define "Probl[…]
Rebooting your router will not give you a faster I[…]
There are no other notifications from esptool.py i[…]
Using the Arduino IDE, you'll learn how to set up […]
In this project, you will post to Twitter using an[…]
In this project, we will build a water level contr[…]
I guess I'm late, but I had the same problem and f[…]
Last night I received my first D1 Minis for a lear[…]
Although I am aware that this is an old post, I fe[…]