Giter VIP home page Giter VIP logo

esp3d's Introduction

Hi there, you found me 😄

I am the developer of ESP3D, ESP3DLib, ESP3D-WEBUI and several others projects as main developer or contributor.

If you need, you can contact me by email or by discord.

If you like my contributions/work, please feel free to support me at :

  • liberapay Donate using Liberapay
  • Paypal PayPal – The safer, easier way to pay online.
  • ko-fi ko-fi

It is always nice to get support and bring good mojo 😺

Also if you use my work in your projects, do not be shy and share it, it is always nice to be mentioned.

Project Page ESP3D 3.0

esp3d's People

Contributors

a7f avatar alhirzel avatar allcontributors[bot] avatar atsju avatar austinsaintaubin avatar coliss86 avatar dependabot[bot] avatar fape avatar gitter-badger avatar j0hnlittle avatar jschwalbe avatar kingbain avatar luc-github avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

esp3d's Issues

Unable to compile because class IPAddress has no member named 'toString'

Hi im unable to compile the code, because:

Arduino: 1.6.5 (Windows 7), Platine: "Generic ESP8266 Module, Serial, 80 MHz, 40MHz, DIO, 115200, 512K (64K SPIFFS)"

command.cpp: In static member function 'static void COMMAND::execute_command(int, String)':
command.cpp:44: error: 'class IPAddress' has no member named 'toString'
    if (wifi_get_opmode()==WIFI_STA)currentIP=WiFi.localIP().toString();
                                                             ^
command.cpp:45: error: 'class IPAddress' has no member named 'toString'
    else currentIP=WiFi.softAPIP().toString();
                                   ^
'class IPAddress' has no member named 'toString'

  Dieser Report hätte mehr Informationen mit
  "Ausführliche Ausgabe während der Kompilierung"
  aktiviert in Datei > Einstellungen

Please help me Oo.
Thanks in advance

When printer is busy web ui is moved to processing

if printer is in busy loop that take more than 3s ( like homing) ESP considers data out of date and switch off the temperature UI and display processing, which is initially to prepare data only not for printer busy
Would be better to always display even no data refresh, and use the timer to display a status: printer online or printer busy

SOFTAP is broken due to memory overload

I cannot use AP mode anymore - need to disable CSS to get display when it was working before - no idea where this come from - I tried http://arduino.esp8266.com/versions/1.6.5-1084-ga39ce29/package_esp8266com_index.json and it is working

As I am rewriting UI using template engine and SPIFFS this will decrease usage of PROGMEM and string manipulation
Page will also be created and send part by parts to avoid usage of whole memory for the page - instead of creating a 8K page then cut it to be send by 2k parts - I will create 2k then send - then continue to redo 2K then send, etc... so page will not be complete in memory and so won't have any size limitation.

Handle serial commands for configuration

module should be able to be configured by serial if no available wifi client
back bone is ready, [ESPxxx] is the template where xxx is command number and are the parameters
need to define what command are useful :
status
set ap/station mode (done) [ESP103]APP or [ESP103]STA
set SSID/password (done)[ESP100] and [ESP101]
set PHY mode
set authentification mode
set channel
set IP/GW/subnet
Get mode (ap/sta)
Get SSID
Get IP/GW/subnet IP done: [ESP111]
Get connection status
Restart [ESP888]RESTART
Reset Config [ESP444]RESET
Write Config [ESP444]CONFIG

Reset

Thanks for a very good project 👍 and thanks for sharing it.

When I applay a page, and there is a EPS8266.restart(), it will not boot up again. There is no debug messages (which at first start up) and there will be no life in the wireless network (ESP8266).

Do I something wrong, I use a NodeMCU 1.0

Best regards
Per

Change send function to limit string size in memory

currently one big string is used to store the whole page which is used by send function which will cut the string in part because sending is limited to a size under 4K

so we can have 2x the size of the page a once which can lead to out of memory
the best is to add the page content until buffer is full then send - then refill the the buffer and purge the buffer at the end.
the issue is the content-length is not defined but browser will display page anyway and cut connection after 2s so should be ok

Add Hostname as configuration option

To be able to change hostname from configuration web page (system page) and use same for bonjour protocol
currently : ESP+mac number for hostname and esp8266.local for bonjour

better to be able to customize use same for both

Web Front End for handling printer

need to define features:
current test code is able to get temperatures from M105 command, every second, but no UI is defined, plan to use some svg images to enhance UI
front end should allow to:
check printer status
edit eeprom?
pause/stop print
restart printer
list SD content
start a print using SD file ?
control temperature ?
change speed ?
jog axis ?

advanced:
send email is issue detected? print is done?

any comment suggestion is welcome

Error Wifi AP! M117 192.168.0.1

compiled without change anything in source give error
after try with change ip, name etc nothing to do and print "Error Wifi AP! M117 192.168.0.1"

i think not initialize esp to ap mode
my version of esp8266 is 01
http://www.esp8266.com/wiki/doku.php?id=esp8266-module-family#esp-01
arduino version 1.6.5

esp compiled with other source working
for example this is ok and esp go to ap mode
https://github.com/esp8266/Arduino/blob/ea302aab05480ad36c076b618abb642b1eb1893b/hardware/esp8266com/esp8266/libraries/DNSServer/examples/CaptivePortal/CaptivePortal.ino

UI enhancement/optimization

Basic UI is done / back end is ready - but I am not a designer anyone want to improve or have suggestion - please feel free

reset after connecting to webserver

ets Jan 8 2013,rst cause:4, boot mode:(3,6)

wdt reset
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x42
csum 0x42
~ld

is thrown by device via serial interface.
any idea what i`m making wrong?

Best regards,
CaptBlaubaer

test, errors and urgent options

program works at 250.000 baud, no problem to connect
stability is ok with good power supply
first problem detected: printer status not update and remain stopped if you use browser update (chrome browser)
For restart connection to printer you need to select "station configuration" and reconnect to "printer status"
i suggest to add this options for productive use:

  • movement icons: home buttom for axis, up/down and left/right at step of 1mm and 10mm (i think easy to add this options)
  • real time temperature control
  • stop/pause/restart button
  • sd_memory: upload, delete and select file to print
  • feed speed direct control

advanced option:

  • use low price I2C webcam as Ov7670 for direct printing remote monitoring

professional option:

  • 3d model preview :)

Any configuration of Repetier needed ?

Hi,

id souccessfully flashed the ESP and id got it connected with the DaVinci.
But it cant connect to the printer because the printer do not answer.
Id also checked if id miss cabled RX/RX or TX/TX, there is no communication.
The ESP sends a lot of gcode to the printer, but it dont get any answer.

Do i have to change something in the Repetier Firmware to let it work ?

Thanks in advance.

UI refresh issue

time to time
UI display
X:.00 Y:0.00 Z:0.000 Speed:100% Flow:100%
instead of
X:0.00 Y:0.00 Z:0.000 Speed:100% Flow:100%

because it is a modification of stored string it means original data is corrupted or replace is buggy in some way

Need light CSS extracted from bootstrap one

to avoid to be dependent from web connection - a light css with only necessary items would be easy to be embedded in web page to give nice use experience when disconnected from internet - like in AP mode - here the current UI when connected to internet

image

Error while esp8266 is running the code

I connected HX711 to my arduino uno and trying to upload the data from it through the digital pins (7,8) to an website . The code is uploading perfectly but when I open the serial monitor im getting this....

ets Jan 8 2013,rst cause:4, boot mode:(3,6)

wdt reset
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x42
csum 0x42
~ld

is thrown by device via serial interface.
any idea what i`m making wrong?

AP Configuration shows Station SSID and Password

Feature request: Separate SSID and password for AP and station.
I guess if you apply on on the AP Configuration page it`ll take over the SSID and will try to start an own AP with the values of my existing router.

Randomly module reset

this can be seen when using a long time (memory leak ?) but memory says 24k when going to Home

result is connection is lost need refresh page manually, all history of status/error/info is lost

printer.tpl is too big and need to be optimized on 64K SPIFFS

It use 26K eating 50% of available SPIFFS - and no favicon.ico can be added - neither UI for SDCard management and EEPROM management - reducing fancy UI will allow to add the missing space for additional feature on on 64K SPIFFS
Target is less than 10K :
possible ideas :

  • remove range controls
  • using button instead of picture for up and down and home
  • use radio button to set the step 0.1/1/10

Random Exception (28) - Memory capacity + Captive portal problem

randomly this exception apear but I was not able to reproduce it on simple sketch so it is not module issue but code issue.
I do not know where the issue come from - I know urldecode function may bring this issue as it is not secured yet but this happen just on page navigation not on queries so it is not urldecode.

As I will rewrite UI engine with a template engine, I will review all pages and enhance memory checking, I hope this will fix this issue

Does the DaVinci 1.0 have enough power ?

Hi, id would like to test your ESP8266 firmware, but do the DaVinci really have enough power on the connector ? Or should i connect the esp to the main 5V rail ? Im just asking because i dont know where the 5V line is connected, i dont want to burn the poor SAM....

Sorry for my english.

Thanks in advance.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.