Skip to content

agnunez/AlpacaServerESP32

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AlpacaServerESP32

This is a library for adding Ascom Alpaca capabilites to your ESP32 arduino project. The motivation for making this was to have a compact, easily adaptable library for interfacing with Alpaca.

Auto discovery by Ascom is working, and more than one device can be connected to the server. As of now, only focuser is implemented, but adding other classes is very simple and I'll do so in the future.

Be sure to check out Ascom API documentation to be sure you handle values and parameters correctly, and return error responses as needed.

A webpage for configuring the server be found at /setup , and a setup page for each connected device will be dynamically created and presented as tabs. Saving to flash memory is supported, with settings being loaded at boot. Your class should implement aReadJson and aWriteJson to load and save settings to and from the web-interface and the flash memory.

For debugging set AlpacaServer.debug = true, after you have called Serial.begin();

This repository should be linked in the specific instance of Alpaca Driver, adding un platformio.ini a line within libdevs section (See below "Minimum setup")

To use, simply let your class inherit the relevant AlpacaDevice-derived class (e.g. AscomFocuser), and make sure to implement all pure virtual methods: aGet* should call _alpacaServer->respond(value, , ) aGet* should call _alpacaServer->respond(nullptr, , ) after reading parameters using _alpacaServer->getParam("")

Working Alpaca drivers can be found here: https://github.com/agnunez/AlpacaSafetyMonitor https://github.com/elenhinan/YetAnotherFocuser

Minimum setup:

platform.io

lib_deps=
   https://github.com/agnunez/AlpacaServerESP32.git

myFocuser.h

#include <AlpacaFocuser.h>

class MyFocuser : AlpacaFocuser
{
  [...]
  // alpaca getters
  void aGetAbsolute()             { _alpacaServer->respond(1); }
  void aGetIsMoving()             { _alpacaServer->respond(_isRunning()); }
  void aGetMaxIncrement()         { _alpacaServer->respond(_pos_max); }
  void aGetMaxStep()              { _alpacaServer->respond(_pos_max); }
  void aGetPosition()             { _alpacaServer->respond(_getCurrentPosition()); }
  void aGetStepSize()             { _alpacaServer->respond(_micrometerperstep); }
  void aGetTempComp()             { _alpacaServer->respond(_temp_comp); }
  void aGetTempCompAvailable()    { _alpacaServer->respond(1); }
  void aGetTemperature()          { _alpacaServer->respond(_temp_meas); }

  // alpaca setters
  void aPutTempComp()             { _alpacaServer->getParam("TempComp", _temp_comp); _alpacaServer->respond(nullptr); }
  void aPutHalt()                 { stop(); _alpacaServer->respond(nullptr); }
  void aPutMove()                 { _alpacaServer->getParam("Position", _pos_target); _alpacaServer->respond(nullptr); }
  [...]
}

main.h

#include <AscomServer.h>

#define ALPACA_UDP_PORT 32227
#define ALPACA_TCP_PORT 80

main.cpp

AlpacaServer alpacaServer("ExampleServer");
MyFocuser myFocuserA();
MyFocuser myFocuserB();

void setup()
{
  // make sure wifi is up and running before starting server
  [...]
  alpacaServer.begin(ALPACA_UDP_PORT, ALPACA_TCP_PORT);
  alpacaServer.addDevice(&myFocuserA);
  alpacaServer.addDevice(&myFocuserB);
}

void loop()
{
   [...]
   alpacaServer.update()
}

About

Simplified ESP32 AlpacaService for ObservingConditions and SafetyMonitor ascom drivers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C++ 67.5%
  • JavaScript 23.3%
  • HTML 6.3%
  • CSS 2.9%