Search results

  1. L

    Uncanny Eyes is getting expensive

    Hello, I tried to use the larger eyes default_lager from https://github.com/PaulStoffregen/ST7735_t3/blob/master/examples/uncannyEyes_async_st7789_240x240/graphics/default_large.h with an esp32c3 board (seeeduino xiao), but whe I use this file all I got was a blank display. It compiled without...
  2. L

    Debugging with Serial.print not working

    That's it! Forgot about this line. Thank's for the help! lab
  3. L

    Debugging with Serial.print not working

    Sorry. /* (c) 2014 - Markus Backes - https://backes-markus.de/blog/ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)...
  4. L

    Debugging with Serial.print not working

    Hi, I am using this code for toggeling debugging on/off: #define DEB_ON #ifdef DEB_ON #define DEBUG_PRINT(str) Serial.print(str) #define DEBUG_PRINTLN(str) Serial.println(str) #else #define DEBUG_PRINT(str) #define DEBUG_PRINTLN(str) #endif Unfortunately I get a compiling error...
  5. L

    Teensy LC Serial1

    I tried to change the baud rate - this didn't work at all. I got no messages from the esp at all. So I will give the #3 a try next. Greetings, Kai
  6. L

    Teensy LC Serial1

    Thanks for your answer and help! I will try your suggestions asap! Would it help to move the serial communication part into the setup? I only need to check the time at startup... Greetings, Kai
  7. L

    Teensy LC Serial1

    Hi, I am trying to get a NNTP time sync via esp8266 to my Teensy LC, following this guide: https://www.geekstips.com/arduino-time-sync-ntp-server-esp8266-udp/ for a word clock project. The esp part works like a charm, putting the unix time code out over serial as message like "UNX1509820636"...
  8. L

    Teensy <- ES8266 serial communication

    Output is as shown on first post (last section). Will try yout ideas and report if it helped. Thanks for your help!
  9. L

    Teensy <- ES8266 serial communication

    Ok, this is what I did yesterday: - changed the baud rate to 57600 and after that to 115200: no effect - I already connected the esp8266 to an ftdi adapter and tested it alone: in every single case the serial command was send. Today I changed the serial input pin on the teensy lc from Serial1...
  10. L

    Teensy <- ES8266 serial communication

    Another observation: I put both serial routines into the code. When the serial1 function stops to work, serial (via terminal) stil works.
  11. L

    Teensy <- ES8266 serial communication

    Ok, now I edited the post with the complete code... I also tried using the serial monitor as you suggested. It worked... So I have a part on the teensy working alone and a part on the esp12 working alone. But together they do not work :-(
  12. L

    Teensy <- ES8266 serial communication

    Hi defragster, thanks for your ideas. I will try your suggestions. I don't think the problem is on the esp side because I have a led light up after serial data so I can see the part is executed and I tested the esp part by using it solitary and watching the commands on the serial monitor. Do...
  13. L

    Teensy <- ES8266 serial communication

    Hi, I have a projekt where I want a esp8266 to serve a web page with some buttons. Click on these buttons sends serial data to a teensy lc and the teensy should evaluate the data. Generally it works but after a few cicles the teensy stops receiving the commands. I know that there are send...
  14. L

    Geeting time from a dcf77 module

    The Reichelt one is only 5 € - but I neber managed to get DCF to work. I finally switches to a RTC clock module and set the time by hand ...
  15. L

    Web server page size limit

    I commented out the Serial1.clear() and the serialCommand="". Didn't solve the problem. I am not sure, what you mean by arduino code base. I am using the arduino ide to program the esp8266. This is the code running: /* * * M O O D L I G H T WebControl * * Steuerung der...
  16. L

    Web server page size limit

    When I first had this problem, the serial speed was 115200 on both sides. I changed it to 19200 because I thought it could be too fast ... I used a mix of different sources for my esp code - will post it later.
  17. L

    Web server page size limit

    Hi Frank B, I changed sizeOf(serialCommand) to serialCommand.legth() - that should fit better... Thanks for the hint. Unfortunately it doesn't solve the problem. The serialComplete ist not used at the moment - but this should not be a problem, right? With the last two lines I tried to reset...
  18. L

    Web server page size limit

    Thanks to all the feedback I made a lot of progress and i am very happy how far I got. But now I am stuck again. I got my sketch to work - mostly ... I re-programmed my esp8266 to work as a stand alone webserver: works great! I got him receiving signals from the web pag when a button is...
  19. L

    Web server page size limit

    Thanks @wozzy and @defragster for the tipps! I already figured out I have to change my whole approach so the tipp from @defragster totaly comes at the right moment!. As I want to build a rgb matrix display that is controled via web interface I need the Teensy to control the matrix. To have a...
  20. L

    Web server page size limit

    Hi. I am fairly new to Arduino/Teensy programming so please forgive if that is stupid question. I am using a Teensy LC connected to an esp8266 201 to serve a webpage. The html code is written to a string variable and send to the esp8266 via AT+CIPSEND. I found that the page is not served if...
  21. L

    Geeting time from a dcf77 module

    Thanks, Xenoamor & mlu! Yes, that was the problem. It is compiling noow and I see data coming in. I still get no reasonable time information from the sensor. :-( Does anyone has used this sensor successfully before?
  22. L

    Geeting time from a dcf77 module

    Hi, I am trying to build a word clock with a Teensy LC. Everything is working and I could use a rtc time moduel DS3231 with success. Now I am trying to get the current time from a dcf77 module (this one: http://www.pollin.de/shop/dt/NTQ5OTgxOTk- ) and the standard dcf77 library. But I get a...
Back
Top