5 Minute project: WiFi deauther with ESP8266 OLED module

preview_player
Показать описание
The module goes by the name: Wemos® D1 Esp-Wroom-02 Motherboard ESP8266 Mini-WiFi NodeMCU Module ESP 8266+18650 Battery+0.96 OLED which is incorrect in many respects.
See the details in my blog here:
Рекомендации по теме
Комментарии
Автор

Hey, got the same module.. everything works but i can not fix the button problem.. up12(D6), down13(D7), select14(D5).. the only function i have is right as select 4 scanning APs.
where is the mistake in my button mapping?
cheers and thx 4 the vid!

rumbuff
Автор

Wow! These videos are quite entertaining and you're a very good narrator definitely keep up the great work my friend!

Sciencegum
Автор

Can you share me your code?. I really wanna see and refer because my teacher wants its run and display temperature on oled . but i'm just fresher and i have't good enough to know everything about this module

nightcoreyou
Автор

I know its been a while but do you have a pinout for this board? I've been looking for it but I can't find it anywhere.

screwoff
Автор

Great video! didn't know this module was ready made compatible with the deauther

dvdcd
Автор

Oh man, I know you're a bad guy with that esp8266 module.

DesertJeff
Автор

For those seeking a copy of a demo program that works, try this:

// Include the correct display library
// For a connection via I2C using Wire include
//#include <Wire.h> // Only needed for Arduino 1.6.5 and earlier
#include "SSD1306.h" // alias for `#include "SSD1306Wire.h"`

// Initialize the OLED display using Wire library
SSD1306 display(0x3c, 5, 4);

#define DEMO_DURATION 3000
typedef void (*Demo)(void);

int demoMode = 0;
int counter = 1;

void setup() {
Serial.begin(115200);
Serial.println();
Serial.println();


// Initialising the UI will init the display too.
display.init();




}


void drawTextFlowDemo() {


display.drawStringMaxWidth(0, 0, 128,
"Peter got it working!" );
}

void drawTextAlignmentDemo() {
// Text alignment demo


// The coordinates define the left starting point of the text

display.drawString(0, 10, "Left aligned (0, 10)");

// The coordinates define the center of the text

display.drawString(64, 22, "Center aligned (64, 22)");

// The coordinates define the right end of the text

display.drawString(128, 33, "Right aligned (128, 33)");
}

void drawProgressBarDemo() {
int progress = (counter / 5) % 100;
// draw the progress bar
display.drawProgressBar(0, 32, 120, 10, progress);

// draw the percentage as String

display.drawString(64, 15, String(progress) + "%");
}

Demo demos[] = {drawTextFlowDemo, drawTextAlignmentDemo, drawProgressBarDemo};
int demoLength = (sizeof(demos) / sizeof(Demo));
long timeSinceLastModeSwitch = 0;

void loop() {
// clear the display
display.clear();
// draw the current demo method
demos[demoMode]();


display.drawString(10, 128, String(millis()));
// write the buffer to the display
display.display();

if (millis() - timeSinceLastModeSwitch > DEMO_DURATION) {
demoMode = (demoMode + 1) % demoLength;
timeSinceLastModeSwitch = millis();
}
counter++;
delay(10);
}

peterfhere
Автор

I have question about deauther. If you can help me write me your discord username so we can chat

nejcskornsek
Автор

Hi Sir I have this kind of board. Where can I find the ino files?

wolflariosa
Автор

Hi guys, which bin file do you use for flashing? There is a new version on github.

_Optimus-Prime_
Автор

I don't undestand where are SDA and SCL pins to connect another I2C sensor.
I tried to find pinout of this board but with no results...
Could you indicate them?
Thanks!

Andreademagistris
Автор

Hi, I tried to use this module but i haven't a good result.One question, have you flashed the esp8266 card with the program "Nodemcu flasher" and the .bin that you have download from Spacehun github?Thanks.N.B.: if i want to return at the original firmware of this module you know where i can download it? Thanks

francopillon
Автор

Do you happen to know why i get only every second line drawn on Y -axis? I have been going through SSD1306 libraries and trying to debug this issue for a while :|

iikkakonola
Автор

Von mir hätte es glatt 5 Sterne gegeben, wenn das Video nicht so blöde geendet hätte. nun weiß ich noch immer nicht was passiert und bin genau so schlau wie vorher

wolfsstolz
Автор

Either your using some rlly cool voice masking or your just villainous af

Adam-tkfm
Автор

How can i enter to flash mod? It is possible to steal password?

SWOSSHHRECORDS
Автор

My dstike evo mini won’t deauth on version 2.6.1 any reason why?

bakerswrld
Автор

any updates, i have the same board but the new sketch is different

reaperforever
Автор

The linked board has been taken down, any other good source?

Desoxy
Автор

I only have COM1 and can't figure out how to connect the module to arduino

neilslater
visit shbcf.ru