Search found 7 matches

by Black_Knight
20 Jan 2019, 21:14
Forum: ESP Easy: Hardware
Topic: Connecting a TM1637 4-Digit Display
Replies: 217
Views: 1271447

Re: Connecting a TM1637 4-Digit Display

I think i'm in the same boat. I can't get my 7segs to display. I've 3 setup from a while back which are working fine, but I've ordered new ones and none of them are displaying. I've verified they work using the same script as you mentioned: http://www.esp8266learning.com/tm1637-7-segment-display-exa...
by Black_Knight
19 Jan 2019, 21:18
Forum: ESP Easy: Hardware
Topic: Can't get 7Seg to display anymore
Replies: 1
Views: 1673

Can't get 7Seg to display anymore

I'm wrecking my head trying to get this to work. I thought it was the display, so I swapped the display. I thought it was the wemos D1 mini, so I swapped that out too. I thought maybe update the firmware (even though I was flashing with the same firmware as I have on other Wemos D1mini devices using...
by Black_Knight
01 Jul 2018, 23:33
Forum: ESP Easy: Software
Topic: Newbie: Can't get SendToHTTP to work
Replies: 10
Views: 6787

Re: Newbie: Can't get SendToHTTP to work

grovkillen wrote: 01 Jul 2018, 19:22 Enddo is wrong though, EndOn is correct
Nice catch. Odd it's working though.
by Black_Knight
01 Jul 2018, 18:55
Forum: ESP Easy: Software
Topic: Newbie: Can't get SendToHTTP to work
Replies: 10
Views: 6787

Re: Newbie: Can't get SendToHTTP to work

Correct. 7seg s on the same display.

I must have been doing something stupid though. I got it working a few hours ago and it's been updating ever since.
This is my Rule:

Code: Select all

on Clock#Time=All **:** do
7dt,[BMP280#Temperature]
enddo
by Black_Knight
01 Jul 2018, 12:40
Forum: ESP Easy: Software
Topic: Newbie: Can't get SendToHTTP to work
Replies: 10
Views: 6787

Re: Newbie: Can't get SendToHTTP to work

The problem is that you try to use the command with an URL. The wiki states: SendToHTTP <IP address>, <Portnumber>, <command> //Or SendToHTTP <domain>, <Portnumber>, </url> So change your rule to: on Clock#Time=All **:** do SendToHTTP 192.168.0.93,80,7dt,25 enddo I tried this before, but got the sa...
by Black_Knight
01 Jul 2018, 12:27
Forum: ESP Easy: Software
Topic: Newbie: Can't get SendToHTTP to work
Replies: 10
Views: 6787

Re: Newbie: Can't get SendToHTTP to work

not sure I understood... do you want to have 2 devices communicate each other? or you have a single Wemos with both BMP280 and TM1637? if it's the second setup then you don't need to sendhttp to the same module but you should be able to use directly the command "7dt,[<sensor>#<value>]" Co...
by Black_Knight
30 Jun 2018, 00:16
Forum: ESP Easy: Software
Topic: Newbie: Can't get SendToHTTP to work
Replies: 10
Views: 6787

Newbie: Can't get SendToHTTP to work

New to EspEasy so go (esp)easy on me. My setup I've got my wemod1 mini running the latest release ( here ). I've got a BMP280 connected up and reporting back temperatures to me. Happy days. I also have a TM1637 7 Segment display connected up and working with the built in features (clock, date etc.),...