mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
New TactilityC implementations for: - WiFi - GPS - Preferences - Timezone Also includes: - Some fixes to enums/naming - Cleanup elsewhere
22 lines
271 B
C
22 lines
271 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool tt_gps_has_coordinates();
|
|
|
|
bool tt_gps_get_coordinates(
|
|
float* longitude,
|
|
float* latitude,
|
|
float* speed,
|
|
float* course,
|
|
int* day,
|
|
int* month,
|
|
int* year
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|