Skip to content
Permalink
2ef9a9413a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (13 sloc) 401 Bytes
package main
const (
// Gateway addresses
dataEndpoint = "https://sd5-endpoint.engr.uconn.edu:48820/data"
heartbeatEndpoint = "https://sd5-endpoint.engr.uconn.edu:48820/heartbeat"
// Header constants
headerUUID = "uuid"
headerTimestamp = "time"
// Time (in seconds) to wait between performing read/send operations
dataReadPeriod = 1
dataSendPeriod = 10
heartbeatPeriod = 10
)