onlytiebowline
onlytiebowline
SKSignal K
Created by Caribsailor on 1/19/2025 in #questions
Code error
@Caribsailor I had the same problem. I was using the sample ini file https://github.com/SignalK/SensESP/blob/main/examples/platformio.ini It looks like Sensesp v3.1 is on the way but not released yet. To get around this, I commented out that library and am using github instead
lib_deps =
; Peg the SensESP version to 3.1.0 and compatible versions
; SignalK/SensESP @ ^3.1.0
; To use the development version, use this line instead:
https://github.com/SignalK/SensESP.git#main
lib_deps =
; Peg the SensESP version to 3.1.0 and compatible versions
; SignalK/SensESP @ ^3.1.0
; To use the development version, use this line instead:
https://github.com/SignalK/SensESP.git#main
3 replies
SKSignal K
Created by sailingYOLO on 1/12/2025 in #sensesp
sailingYOLO - Hi,I'm trying to get engine run...
Documentation says it "emits its value whenever it changes" and the listen_delay is the " minimum interval between updates in ms" https://signalk.org/SensESP/generated/docs/classsensesp_1_1_s_k_value_listener.html#details So it sounds like it is getting new values as it changes. You could test this out by setting a very long listed_day on your esp device and manually sending a new value on signal k Server > Data Fiddler
8 replies
SKSignal K
Created by sailingYOLO on 1/12/2025 in #sensesp
sailingYOLO - Hi,I'm trying to get engine run...
const char* sk_gpsfix = "navigation.gnss.methodQuality";
auto* gpsfix = new StringSKListener(sk_gpsfix, listen_delay);
gpsfix->connect_to(new LambdaConsumer<String>([](String fix) {
M5.Lcd.setTextColor(YELLOW, BLACK);
M5.Lcd.setCursor(0, 80);
M5.Lcd.printf(" gpsfix: %s ", fix);
}));
const char* sk_gpsfix = "navigation.gnss.methodQuality";
auto* gpsfix = new StringSKListener(sk_gpsfix, listen_delay);
gpsfix->connect_to(new LambdaConsumer<String>([](String fix) {
M5.Lcd.setTextColor(YELLOW, BLACK);
M5.Lcd.setCursor(0, 80);
M5.Lcd.printf(" gpsfix: %s ", fix);
}));
8 replies
SKSignal K
Created by sailingYOLO on 1/12/2025 in #sensesp
sailingYOLO - Hi,I'm trying to get engine run...
8 replies
FFilament
Created by onlytiebowline on 11/1/2023 in #❓┊help
TextColumn relationship unique values
To clarify, countries is a has many through (cities) relationship. So if a title has two USA cities, USA is showing up twice in the countries column.
5 replies
FFilament
Created by The Milkman on 4/19/2023 in #❓┊help
Set MorphToSelect to a value in mount()
@The Milkman I am trying to solve the same problem. Where exactly did you place the $this->form->fill() ?
3 replies