mirror of
https://github.com/SpacehuhnTech/esp8266_deauther.git
synced 2026-04-26 00:05:55 +03:00
[GH-ISSUE #794] Serial: DELAY function has unspecified unit (and it is not seconds) #314
Labels
No labels
best of
bug
development
discussion
documentation
duplicate
feature request
help wanted
help wanted
improvement
pinned
pull-request
question
stale
translation
v3
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/esp8266_deauther#314
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dglaude on GitHub (Apr 8, 2018).
Original GitHub issue: https://github.com/SpacehuhnTech/esp8266_deauther/issues/794
In serialcommands.md it is not specified the unit used for "DELAY" function.
It does not seems to be seconds (I tested with 60 and it was not effective).
But it seems to work (I tested with 60000 and I was locked out, I had to reset).
SCAN is explicitly in second (for -t and -c)
ATTACK -t is unspecified
RUN is explicitly in second (for -c)
@spacehuhn commented on GitHub (Apr 9, 2018):
The unit is in milliseconds as known from the Arduino delay() function:
DELAY 1000You can also directly give it seconds:
DELAY 1s@dglaude commented on GitHub (Apr 9, 2018):
I am just saying that it is not documented (like for ATTACK).
Also some scripting command are in seconds and other in millisecond. It could help if all were using the same unit for time parameter.
@tobozo commented on GitHub (Apr 21, 2018):
@spacehuhn do we need a SETUNIT [s|ms|us] command to solve that or can we close this as wontfix ?
@spacehuhn commented on GitHub (Apr 21, 2018):
wontfix.
You can use
sandmsfor every time parameter. I added the info the the delay command.There should be no confusion.