This commit is contained in:
Fabian Märki
2015-08-21 12:05:06 +02:00
parent ea18618596
commit 38ca06b154

View File

@ -167,12 +167,7 @@ Following examples build on a waveform data (see below). They also work for scal
"shape":[
4
],
"value":[
1,
2,
3,
4
]
"value":[1,2,3,4]
},
{
"iocMillis":10,
@ -183,12 +178,7 @@ Following examples build on a waveform data (see below). They also work for scal
"shape":[
4
],
"value":[
2,
3,
4,
5
]
"value":[2,3,4,5]
},
{
"iocMillis":20,
@ -199,12 +189,7 @@ Following examples build on a waveform data (see below). They also work for scal
"shape":[
4
],
"value":[
3,
4,
5,
6
]
"value":[3,4,5,6]
},
{
"iocMillis":30,
@ -215,12 +200,7 @@ Following examples build on a waveform data (see below). They also work for scal
"shape":[
4
],
"value":[
4,
5,
6,
7
]
"value":[4,5,6,7]
}
]
}
@ -367,39 +347,19 @@ curl -H "Content-Type: application/json" -X POST -d '{"fields":["pulseId","value
"data":[
{
"pulseId":0,
"value":[
1,
2,
3,
4
]
"value":[1,2,3,4]
},
{
"pulseId":1,
"value":[
2,
3,
4,
5
]
"value":[2,3,4,5]
},
{
"pulseId":2,
"value":[
3,
4,
5,
6
]
"value":[3,4,5,6]
},
{
"pulseId":3,
"value":[
4,
5,
6,
7
]
"value":[4,5,6,7]
}
]
}
@ -438,39 +398,19 @@ curl -H "Content-Type: application/json" -X POST -d '{"ordering":"desc","fields"
"data":[
{
"pulseId":3,
"value":[
4,
5,
6,
7
]
"value":[4,5,6,7]
},
{
"pulseId":2,
"value":[
3,
4,
5,
6
]
"value":[3,4,5,6]
},
{
"pulseId":1,
"value":[
2,
3,
4,
5
]
"value":[2,3,4,5]
},
{
"pulseId":0,
"value":[
1,
2,
3,
4
]
"value":[1,2,3,4]
}
]
}