Closed BigPszemek closed 2 weeks ago
Congrats on opening your first issue on this repository! ๐
This is a automated message to help you avoid common pitfalls when asking for help online.
๐ Be sure to:
๐ฌ๐ง Communicate in English so everybody can understand you
๐ Have a look at the Wiki and README for information
๐ Search for similar issues (open and closed)
โ๏ธ Provide enough information to understand, recreate and help out with your problem
โน๏ธ Let us know if you find a solution and please share it with us
๐ Close the issue when your problem has been solved
Go to A_ config just comment nodemcu and uncomment any dstike version that matches your buttons and screen configuration I recommend to uncomment the distike mini at line 45
Go to A_ config just comment nodemcu and uncomment any dstike version that matches your buttons and screen configuration I recommend to uncomment the distike mini at line 45
accidentally closed the thread, |
i feel like giving up on this and just starting to do something on my own. tried changing it and it didnt work (:
Bro donโt give up https://github.com/SpacehuhnTech/esp8266_deauther/releases download the bin file an flash it with esp web tool use deauther mini or try other if it doesnโt work
1573 u can refer this conversation also
hey, so i got a different board and used your previous advice (45 line) and it works now. thanks alot man hope you do well :)
Ur welcome
Yes
Describe the error The Buttons do not work with the deauther code but they do work with my code. I am in no way educated on the topic, and i dont really know what can be causing it. I assume its because i have connected it in a different way than what the code was written for. I have tested the buttons with this code:
const int BUTTON_UP = 14; const int BUTTON_DOWN = 12; const int BUTTON_A = 13;
void setup() { Serial.begin(115200); pinMode(BUTTON_UP, INPUT_PULLUP); pinMode(BUTTON_DOWN, INPUT_PULLUP); pinMode(BUTTON_A, INPUT_PULLUP); }
void loop() { if (digitalRead(BUTTON_UP) == LOW) { Serial.println("Button UP pressed"); } if (digitalRead(BUTTON_DOWN) == LOW) { Serial.println("Button DOWN pressed"); } if (digitalRead(BUTTON_A) == LOW) { Serial.println("Button A pressed"); }
} Video of the code working: Screencast from 2024-11-02 19-01-35.webm
Expected behavior Buttons should be working i guess
Screenshots thats how it looks like(might be hard to read): and thats how the buttons are set up:
Environment (please complete the following information):
Attempts i've tried many cable combinations and altering the deauther code but as im new both did not work.
Additional context so when theres no resistor the pin reads the button as a different state but when resistor added the state is not fluid anymore, works with my code but not deauther.