gosenbay is a golang implementation of senbay that is intended to work on multiple platforms.
In this example, int and string value are converted to senbay format.
package main
import (
"fmt"
"github.com/haradama/gosenbay/senbay"
)
func main() {
PN := 121
SD, _ := senbay.NewSenbayData(PN)
value1 := 123
SD.AddInt("KEY1", value1)
SD.AddText("KEY2", "value2")
result := SD.Encode(true)
fmt.Println(result)
}
- tetujin/SenbayKit-CLI (The original)
- Senbay Platform Website
- Senbay YouTube Channel
@inproceedings{Nishiyama:2018:SPI:3236112.3236154,
author = {Nishiyama, Yuuki and Dey, Anind K. and Ferreira, Denzil and Yonezawa, Takuro and Nakazawa, Jin},
title = {Senbay: A Platform for Instantly Capturing, Integrating, and Restreaming of Synchronized Multiple Sensor-data Stream},
booktitle = {Proceedings of the 20th International Conference on Human-Computer Interaction with Mobile Devices and Services Adjunct},
series = {MobileHCI '18},
year = {2018},
location = {Barcelona, Spain},
publisher = {ACM},
}
gosenbay is available under the Apache License, Version 2.0 license. See the LICENSE file for more info.