Thing different ! Discover Karajan, my way to boost your project on ESP devices.

rin67630
Posts: 114
Joined: Sun Mar 11, 2018 5:13 pm

Thing different ! Discover Karajan, my way to boost your project on ESP devices.

Postby rin67630 » Wed May 01, 2024 5:29 am

You want to do more with your ESP device? Start your project with Karajan!

What is ESP-Karajan?

ESP-Karajan is a kind of operating system for ESP 8266 and ESP32 devices, taking away unproductive tasks of
- initializing the processor,
- WiFi connection,
- the displays,
- online dashboards,
- measurement chips,
- communication between ESP devices,
- connection to a remote PC.

Karajan contains a collaborative scheduler written for ease of use and clarity easily accessible to non-programmers without IT gibberish.
It provides several levels of runtime processing:
- Instant data (highest priority, no fixed timing, for asynchronous communication with other devices)
- Fast data (runs every 125ms)
- Menu (runs every 125ms)
- Slow data (runs every second)
- Statistics (runs every second)
- Display (runs every second)
- Serial reports (runs every second)
- Wireless communication (runs every second)
The scheduler distributes the tasks running every second evenly over the whole second.
Additionally timing flags are provided:
- NewMinute
- Minute Expiring
- NewHour
- HourExpiring
- NewDay
- DayExpiring
which allow to process statistics at the right time.
These timing flags rely on the time given from a NTP server over the WiFi connection.

All being Open Source and free as a beer.

But download and read the doc and try the demo to discover all the other features of Karajan...
https://github.com/rin67630/ESP_Karajan ... tation.pdf

liaifat85
Posts: 200
Joined: Wed Dec 06, 2023 2:46 pm

Re: Thing different ! Discover Karajan, my way to boost your project on ESP devices.

Postby liaifat85 » Wed May 01, 2024 5:38 pm

Thanks for sharing.

rin67630
Posts: 114
Joined: Sun Mar 11, 2018 5:13 pm

Re: Thing different ! Discover Karajan, my way to boost your project on ESP devices.

Postby rin67630 » Wed May 01, 2024 6:50 pm

I still have two yet unsolved problems with WiFi

After a reboot WiFi, is re-established from EEPROM only when proviously the credentials came from SmartConfig.
When the credentials came from the sketch, they are not stored, despite of these lines:

Code: Select all

 if (WiFi.status() == WL_CONNECTED)
  {
    WiFi.setAutoReconnect(true);
    WiFi.persistent(true);
    Serial.println("Connection OK!");
   }
    
The second problem is on ESP32 only, i could not find any working code to forget the WiFi credentials.
Of course one can erase them upon compiling, but I have the "x" menu to erase them by program. That works only on the ESP 8266.

Any clues would have been appreciated.

Who is online

Users browsing this forum: No registered users and 7 guests