generalovernight
Forum Replies Created
-
AuthorPosts
-
Gerrit5Participant
Hi,
I just bought ” the Internet of thinks Profi Lernpaket from Conrad with the NanoESP.
The handbook is refering to the Advent Calender 2015 with examples i can use to learn about the IOT.The problem is, i cannot find the Advent Calender 2015 to download, maybe becouse i am new here and German is not my native language.
Advent Calender 2016 is easy to download, but is not the same examples.
My question is , were can i download the Advent Calender 2015 ?
Thanks in advance
TychoNanoParticipantOn day 3 I successfully uploaded the program and changed my wifi accesspoint name
nanoesp.configWifi(ACCESSPOINT, “MyNanoESP”, “MyPassword”);
And I was able to connect to it, using the specified password. Serial monitor gave successful result.On day 4 I opened the program and modified the WLAN-name and password in the defines to the new values. But when I upload the program to the board, the D3 led goes on (that’s good), but the serial monitor gives (eventually) “Error, no connection”. Also the WLAN-name is not visible anymore in the available WLAN list (and before uploading it sure was visible).
I have tried this on two computers, both with the same result.
In summary: when I upload the program of day 3, I see the WLAN-name of my NanoESP in the WLAN-list. Then when I upload the program of day 4, the WLAN-name disappears of the WLAN-list.
Does anyone have this problem also? Anyone have a clue how to solve this issue?Thanks in advance!
HFParticipantHallo,
habe mir die blynk.zip 0.3.4 geladen.
Aber wo soll ich die hinkopieren, als *.zip oder entzippt?
Wer kann mir die Schritte sagen, denn wie beschrieben klappt es nicht bei mir?
Ich finde sie nicht wieder.
Danke
HFGerrit5ParticipantI found it, now i can start learning.
TerraParticipantFalls das noch wer ließt, ich bin inzwischen auf einen NodeMCU ESP8266 umgestiegen der auch mit der Arduino IDE programmiert werden kann, sehr viele gute ESP8266 Libraries unterstützt, mehr Speicher hat und weitaus billiger ist als der NanoESP.
Bisher bin ich sehr zufrieden mit diesem Setup.
hosi1709ParticipantHabe gerade den Conrad-Adventskalender IoT erhalten und das 1 Fenster vorzeitig geöffnet. Sobald ich jetzt das NanoESP in die USB-Buchse stecke, stürzt der Mac mit macOS Sierra ab. Das hat sich auch nicht geändert, nachdem ich den o.a. Treiber für Mac installiert habe.
Ich nutze sonst mein MaccBook Air und Arduino IDE mit dem NodeMCU 12E und dem Arduino UNO. Treiber habe ich hier gefunden:
https://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx
Keine Probleme!Ich suche also einen Treiber, der für NodeMCU, Arduino UND nanoESP läuft. Wo finde ich den??????
mlamplParticipantkann das Verzeichnis und file ESP8266_SoftSer.h nicht finden .
Was mache ich falsch ?viotParticipantJa, das scheint eine Änderung in der neuen Library zu sein, mein Programm sieht jetzt so aus:
/*
Blynk 1: LED
Change ssid, password and token
*/char ssid[] = “XXXX”;
char password[] = “XXXX”;
char token[] = “XXXX”;#define BLYNK_DEBUG
#define BLYNK_PRINT Serial // Comment this out to disable prints and save space
#include <ESP8266_Lib.h>
#include <BlynkSimpleShieldEsp8266.h>// Set NanoESP Serial object
#include <SoftwareSerial.h>
SoftwareSerial EspSerial(11, 12); // RX, TXESP8266 wifi(&EspSerial);
void setup()
{
// Set console baud rate
Serial.begin(19200);
delay(100);
EspSerial.begin(19200);
delay(100);
Blynk.begin(token, wifi, ssid, password);
}void loop()
{
Blynk.run();
}thymjanParticipant@hosi1709: hast du auch wie in der Anleitung beschrieben den alten Treiber entfernt?
https://www.simplicate.info/2016/09/16/ch340-drama-osx-10-12-sierra-16a313a/Es handelt sich hier speziell um den Treiber für den ch340 Chipsatz. NodeMCU und Arduino sollten davon nicht beeinträchtigt sein. Die haben andere Chipsätze die die Kommunikation zwischen USB und RX/TX der Mikroprozessoren managen.
Also wie gesagt, den alten wie in der Anleitung beschrieben löschen (der ist für das Absturzszenario verantwortlich) und dann den neuen installieren.
November 20, 2016 at 14:16 in reply to: Day 4 problem: WLAN-name disappears of the WLAN-list | connection error #1603KackiParticipantWell, this is not a problem or an issue, but this is the goal – what did you expect?!
On day 3 you use the NanoESP as an AP, i.e. your ESP is “a router”.
On day 4, your NanoESP is working as a WLAN Client that should connect to your existing local WLAN Network you provide e.g. via Fritzbox or an equivalent router.These 2 network modes are totally different and I guess that is the intention of the 2 excercises.
You shoud read carefully the text ;-)KackiParticipantHallo HF,
du hast ein Verzeichnis unter ~\Dokumente\Arduino\libraries oder so ähnlich. Notfalls suche einfach nach allen Unterverzeichnissen namens “libraries”, die es auf Deiner Platte gibt. Du wird es erkennen, dort müsste schon das Unterverzeichnis ~\libraries\NanoESP-1.1 von Tag 2 darin angelegt worden sein.
In dieses Verzeichnis ~\libraries kopierst Du alle Unterverzeichnisse, die sich im ZIP befinden. Natürlich entpackt.
Sieht bei mir so aus (es könnte sein, dass bei mir das ein oder andere Verzeichnis “zuviel” drin ist…)Attachments:
KackiParticipantHast Du die Blynk-Library (unbedingt Version 0.3.4) runtergeladen und in das richtige Vznis entpackt?
Die Blynk-Library ist hier (https://github.com/blynkkk/blynk-library/releases/tag/v0.3.4) verlinkt.
Zip öffnen und alle Verzeichnisse daraus in Dein “libraries”- Verzeichnis kopieren. Siehe screenshot:Attachments:
KackiParticipantWenn Du wie ich vorher z.B. von blynk.cc eine neuere Version (die 0.4.0 hatte ich) installiert hast, solltest Du die zunächst restlos(!) wieder aus dem Library-Verzeichnis löschen, denn ein „Überkopieren“ der 0.3.4 führt zu Fehlern beim Compilieren.
November 20, 2016 at 21:47 in reply to: Day 4 problem: WLAN-name disappears of the WLAN-list | connection error #1609TychoNanoParticipantKacki,
You’ve been a great help. I get “WLAN connected” now. I thought I had to use the name/password combination I’ve entered on day 3, but I should use the name/password of my own local WLAN. Of course!
Note that I’m using the Dutch translation, and the text is not always really clear…
Many thanks for your help!mlamplParticipantHI
Danke für die Info , habe die library laut deinem link geladen und habe folgendes im Verzeichniss.
Datum stimmt mit deinem Screenshot nicht zusammen .
ist es ein alter link ?bitte um überprüfung
Danke im vorraus.Attachments:
-
AuthorPosts