tiomev
September 15, 2021, 2:38am
1
Greetings,
Neubie here. I have an ESP8266 on a breadboard and program it with Arduino software via a usb interface. My sketch is complete. It doesn’t need WiFi. Which minimal microprocessor without WiFi will run my sketch. Also I don’t want to use a breadboard to connect to resistors, sensors, leds, etc. I want a production unit. Should I have a circuit board made. If so how?
Thanks in advance
MarkV
JohnRob
September 15, 2021, 3:31am
2
Welcome to the forum
If you want, you can disable the WiFi by:
#include <ESP8266WiFi.h> // for WIFI_OFF
//*****************************************************************************
// Operational Parameters:
//*****************************************************************************
//*****************************************************************************
// Pin Assignments:
//*****************************************************************************
// Prototypes:
//*****************************************************************************
// device setup:
//*****************************************************************************
void setup()
{
// Disable WiFi radio:
WiFi.disconnect(); // probably the same as WiFi.mode (WIFI_OFF)
//alternate code: WiFi.mode( WIFI_OFF );
WiFi.forceSleepBegin();
delay(2); // needed for some unknown reason
I have a attiny85 that I use for a diy BadUSB. you could give that micro-controller a go
system
Closed
January 13, 2022, 3:45pm
6
This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.