Commit Graph

2995 Commits

Author SHA1 Message Date
Maxim Prokhorov
1fa10cd7cf lights: fix my92xx channel setup 2021-02-06 04:44:25 +03:00
Maxim Prokhorov
c01fbeb8ae mqtt: make sure json topic is unique 2021-02-06 04:44:25 +03:00
Maxim Prokhorov
b4093418f4 lights: no need for a generic function when we only map for pwm 2021-02-06 04:44:25 +03:00
Maxim Prokhorov
2f39d0db8a lights: refactor providers
- make sure we have custom provider before calling the update,
replace old check in the update function
- fix race condition in the provider function, causing complete lock-up of
lights controls (triggered by sending light updates very fast. for example,
using arrow keys with the webui sliders; ref. #2424)
- rework state change functions to work using loop() func instead of a
pair of scheduled functions. we should not go out-of-sync now, and it
also avoids forcibly creating std::func object each invocation
- rework other providers to be more in line with custom callbacks -
introduce state, value and update calls as a common way to handle lights
- correctly handle state change when turning OFF and ON
- update tuya to store the last state, never send channel values when OFF (ref. #2424)
2021-02-06 04:43:35 +03:00
Maxim Prokhorov
aece6a99b1 ws: don't flood the log with actions
also, clean-up PGM_P usage and just use `const char*` instead
2021-02-06 01:20:09 +03:00
Maxim Prokhorov
4486f82f09 lights: terminal commands clean-up
- fix argc checks in state
- use ctx as output for commands
- show state when calling without args
2021-02-06 01:20:09 +03:00
Maxim Prokhorov
3dfa06ead1 webui: fix favicon mime type
inline-source uses 'image/ico' otherwise
supposed to be fixed upstream via the usage of type="image/x-icon" as
link attribute, but there's no npmjs release yet
2021-02-04 12:03:26 +03:00
Maxim Prokhorov
05cc081b7d rfm69: fix warning when building 2021-01-28 21:24:20 +03:00
Maxim Prokhorov
19947c1231 rfb: allow to use <code>,<times> in rfbON# / rfbOFF#
ref. #2423
2021-01-28 18:56:29 +03:00
Maxim Prokhorov
52a244db6e rfb: commands to send the code 2021-01-28 01:32:20 +03:00
Maxim Prokhorov
10519cc276 hw: keep serial disabled with the sonoff rfbridge
ref. #2423
2021-01-27 01:43:59 +03:00
Maxim Prokhorov
92d5e7becb tuya: build defaults based on #2414 discussion 2021-01-26 14:28:12 +03:00
Maxim Prokhorov
1b4e515575 ws: send time_t as string, more in the comment
amend c100696f7b
2021-01-26 02:05:18 +03:00
Maxim Prokhorov
4d157ccd5b ha: discovery refactoring
- retain setting
- generate topic and message in the discovery object instead of
creating them all at once
- re-implement relays, lights and sensors discovery
- rework name normalization, use relative magnitude indexes
- replace original lights code with schema: json, subscribe to a special
topic to handle lights instead of using the common API
(still wip - colors, hs, temperature settings)

resolve #630
resolve #1564
resolve #2403
2021-01-26 01:02:49 +03:00
Maxim Prokhorov
0b43af8ed9 ha: fix build with current String implementation 2021-01-24 03:53:16 +03:00
Maxim Prokhorov
125ca6f9b3 rfm69: cleanup and bump version 2021-01-24 03:38:02 +03:00
Maxim Prokhorov
e50b6fe79a mdns: clean-up 2021-01-24 03:38:02 +03:00
Maxim Prokhorov
7ba1283024 mqtt: clean-up json queueing
- simply use a basic {String, String} struct
- fix MQTT_TOPIC_TIME vs. MQTT_TOPIC_DATETIME
- get rid of unused chaining and indexes
2021-01-24 03:38:02 +03:00
Maxim Prokhorov
f4726d9966 sys: default heartbeat mode to repeat 2021-01-24 03:38:02 +03:00
Maxim Prokhorov
1960df21fb sys: some more header cleanup 2021-01-24 03:38:02 +03:00
Maxim Prokhorov
1685b0350c sys: hide internal details from the header 2021-01-24 03:38:02 +03:00
Maxim Prokhorov
021f0afb86 sys: clean-up system-specific functions
- shrink utils source file, move heartbeat and boot management into system
- improvise with 'heartbeat' functionality. include scheduler implementation that will
manage the per-module heartbeat callbacks with individual 'mode' and
'interval' settings. current ones are mqtt (including relays, lights, thermostat), debug and
influxdb. preserve heartbeat NONE, ONCE and REPEAT, REPEAT_STATUS is effectively a hbReport & status bit.
- mqtt heartbeat is managed through mqttHeartbeat() callbacks
- tweak mqtt callbacks to use lists instead of the vector, slighly reducing the size of the .bin
- update WebUI, include report setting and update hbMode values
- make sure general.h settings include new heartbeat,
move constant definitions outside of the header
- correctly include dependencies through the .cpp, avoid leaking
internal details.
- as a side-effect, base headers are no longer included recursively
2021-01-24 03:38:02 +03:00
Maxim Prokhorov
c4f0ceb1ae sys: refactor custom reset codes 2021-01-23 21:28:01 +03:00
Maxim Prokhorov
660493a1db settings: fixup 4abcec8a2b
- for some reason old key was default-constructible
- fix magnitude key generation
2021-01-21 14:33:36 +03:00
Maxim Prokhorov
14da395724 rpn: update to support 64bit time_t
- specialize ntp functions to split time_t into 32bit ints when time_t is larger than rpn_int
- rework 'tick' variable into an operator that can be triggered once
- make sure operators expect new time_t split via argc of 2
2021-01-21 13:51:11 +03:00
Maxim Prokhorov
d6bd9ed993 ntp: pointless const 2021-01-21 13:51:11 +03:00
Maxim Prokhorov
c179467be2 ntp: do not override existing ntpTZ 2021-01-21 13:51:11 +03:00
Maxim Prokhorov
e8e58b821c ntp: more checks when using DHCP servers
- make sure server is never empty
- disable dhcp option when server *is* empty
- update configure() to detect both tz and server changes
2021-01-21 11:38:44 +03:00
Maxim Prokhorov
c9a951068b settings: fix gcc-4.8.2 builds 2021-01-21 10:00:52 +03:00
Maxim Prokhorov
071131260f pio: specify revision as prerelease 2021-01-20 23:39:28 +03:00
Maxim Prokhorov
7817e3abd5 pio: accept external revision string 2021-01-20 23:35:36 +03:00
Maxim Prokhorov
21b89efb4b settings: fallback to defaults when old cfg is detected 2021-01-20 21:15:54 +03:00
Maxim Prokhorov
4abcec8a2b settings: fix indirect conversions and getSetting specializations 2021-01-20 15:44:36 +03:00
Maxim Prokhorov
9eb39bfd86 settings: parse bool as string 2021-01-20 14:50:29 +03:00
Maxim Prokhorov
acf299582b relay: use helper type alias for the provider 2021-01-20 01:04:22 +03:00
Maxim Prokhorov
cef9547c19 relay: defaults for pulse mode and time
- allow strings in mode (off, on, none)
- fixup type used for the mode to be am enum instead of int
  (todo: allow webui to accept strings?)
- some cli updates using new funcs
2021-01-20 01:04:22 +03:00
Maxim Prokhorov
972188c83b fan: common types and actions
update custom action callback to also get the event
buttons fan actions
ifan buttons are handled through action instead of manually
fan settings and api are (sort-of) generic
2021-01-19 23:30:12 +03:00
Maxim Prokhorov
9317dbce5a hw: do not ask password change when using -core 2021-01-19 18:20:45 +03:00
Maxim Prokhorov
8e659c9486 relay: type is always valid
resolve #2416
2021-01-17 12:11:41 +03:00
Maxim Prokhorov
ca15752f3b pio: fixup generic build 2021-01-16 20:41:08 +03:00
Maxim Prokhorov
8df23392a9 webui: clean-up cfd6e36dbe
update to terser v5
replace gulp-remove-code with a rough equivalent in the gulpscript itself
replace gulp-inline with gulp-inline-source-html
remove base64 modules as redundant when running inline-source (does both)
remove crass as redundant when running inline-source (uses csso)
fixup jquery source map comment (but still keep the actual file)

at least now this seems stable enough to start more of the ui tweaking
2021-01-16 20:40:23 +03:00
Maxim Prokhorov
e7f97c09e4 webui: some more version bumps
pure-css 1.0.0 -> 2.0.3
datatable 1.10.16 -> 1.10.23
generic jquery-slim -> custom jquery/jquery@a32cf6324f slim build with an addition of -sizzle

does not seem to be breaking anything (yet)
2021-01-15 23:54:16 +03:00
Maxim Prokhorov
df24cf0036 webui: fix missing files and bump jquery 2021-01-15 23:18:15 +03:00
Maxim Prokhorov
3e0291e534 webui: bump old deps 2021-01-15 23:06:19 +03:00
Maxim Prokhorov
c6e2dbbc5a webui: show the actual error when compressJs fails
note that this does not show the correct error line b/c we filter this
through the remover() first
2021-01-15 22:46:55 +03:00
Maxim Prokhorov
808981ca39 webui: update colorpicker
ref. https://github.com/xoseperez/espurna/issues/1132#issuecomment-431868924
it is slightly bigger, but better looking and no jquery dependency

rework colorpicker style as well, hide to prevent sending garbage when
lights are off. update lights module to send `lightState()` and separate
state from status payloads

yes, input[type="color"] is an option, but it does not look good
2021-01-15 22:46:55 +03:00
Maxim Prokhorov
cfd6e36dbe webui: use terser as js minifier
support es6 syntax
use js comment style in custom.js
only minify the custom.js

using 4.x branch, since 5.x wants async / await and more changes to the gulp script
2021-01-15 22:45:44 +03:00
Maxim Prokhorov
3a34d555d5 ci: don't mention travis 2021-01-14 18:11:14 +03:00
Maxim Prokhorov
252b98e0f7 utils: make version string parsable by semver utils 2021-01-14 17:22:27 +03:00
Maxim Prokhorov
df0f1a2e19 ifan: make sure pin is initialized 2021-01-14 16:59:17 +03:00